Browse Source
Merge pull request #4859 from pratu16x7/hotfix
[hotfix] stop notification check in setup
version-14
Prateeksha Singh
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
frappe/public/js/frappe/desk.js
|
|
@@ -233,7 +233,7 @@ frappe.Application = Class.extend({ |
|
|
|
|
|
|
|
refresh_notifications: function() { |
|
|
|
var me = this; |
|
|
|
if(frappe.session_alive) { |
|
|
|
if(frappe.session_alive && frappe.boot && !frappe.boot.in_setup_wizard) { |
|
|
|
return frappe.call({ |
|
|
|
method: "frappe.desk.notifications.get_notifications", |
|
|
|
callback: function(r) { |
|
|
|