Skip to content

Commit f071156

Browse files
Fix error when Bulk Operations attempt to send notifications
1 parent 47df243 commit f071156

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/Shared/AppLib/BulkOperation/BulkOperationBase.ahk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class BulkOperationBase {
9797
}
9898

9999
Notify() {
100-
if (this.notify && this.app.Has("NotificationService")) {
100+
if (this.notify && this.app.Services.Exists("NotificationService")) {
101101
this.app.Notifications.Info(this.GetResultMessage())
102102
}
103103
}

0 commit comments

Comments
 (0)