This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[minor] ignore feed during app install
version-14
Anand Doshi
10 years ago
parent
3e58c29904
commit
86cf971d93
2 changed files
with
3 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
frappe/desk/doctype/feed/feed.py
+1
-1
frappe/public/build.json
+ 2
- 1
frappe/desk/doctype/feed/feed.py
View File
@@ -55,7 +55,8 @@ def update_feed(doc, method=None):
"adds a new feed"
if doc.doctype == "Feed":
return
if frappe.flags.in_patch:
if frappe.flags.in_patch or frappe.flags.in_install_app:
return
+ 1
- 1
frappe/public/build.json
View File
@@ -14,7 +14,7 @@
"public/js/frappe/misc/pretty_date.js",
"public/js/lib/moment/moment.min.js",
"public/js/lib/highlight.pack.js",
"website/js/website.js"
,
"website/js/website.js"
],
"js/canvasResize.min.js": [
"website/js/jquery.exif.js",
Write
Preview
Loading…
Cancel
Save