Skip to content
This repository was archived by the owner on Oct 13, 2023. It is now read-only.

Commit 99b5bb6

Browse files
Fix two missing semicolons in Hamsket Service API. No functional change.
1 parent 12230ee commit 99b5bb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/hamsket-service-api.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ window.hamsket.updateBadge = function(direct, indirect = 0) {
3737
*/
3838
window.hamsket.clearUnreadCount = function() {
3939
ipcRenderer.sendToHost('hamsket.clearUnreadCount');
40-
}
40+
};
4141

4242
window.hamsket.parseIntOrZero = function (n) {
4343
const result = parseInt(n, 10);
@@ -79,4 +79,4 @@ Notification.prototype = NativeNotification.prototype;
7979
Notification.permission = NativeNotification.permission;
8080
Notification.requestPermission = NativeNotification.requestPermission.bind(Notification);
8181

82-
window.close = function() { location.href = location.origin };
82+
window.close = function() { location.href = location.origin; };

0 commit comments

Comments
 (0)