Skip to content

Commit

Permalink
Fix error when Bulk Operations attempt to send notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcclure committed Apr 11, 2021
1 parent 47df243 commit f071156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/Shared/AppLib/BulkOperation/BulkOperationBase.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class BulkOperationBase {
}

Notify() {
if (this.notify && this.app.Has("NotificationService")) {
if (this.notify && this.app.Services.Exists("NotificationService")) {
this.app.Notifications.Info(this.GetResultMessage())
}
}
Expand Down

0 comments on commit f071156

Please sign in to comment.