From 25a77761f669a7548e218e30f61cdba2f7e9e367 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Mon, 5 Jul 2021 17:34:39 +0900 Subject: [PATCH] fix: build error caused by extra ] (#30015) --- shell/browser/notifications/mac/cocoa_notification.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/browser/notifications/mac/cocoa_notification.mm b/shell/browser/notifications/mac/cocoa_notification.mm index 085b6938771e..92ec55a6ab5c 100644 --- a/shell/browser/notifications/mac/cocoa_notification.mm +++ b/shell/browser/notifications/mac/cocoa_notification.mm @@ -33,7 +33,7 @@ void CocoaNotification::Show(const NotificationOptions& options) { NSString* identifier = [NSString stringWithFormat:@"%@:notification:%@", [[NSBundle mainBundle] bundleIdentifier], - [[NSUUID UUID] UUIDString]]]; + [[NSUUID UUID] UUIDString]]; [notification_ setTitle:base::SysUTF16ToNSString(options.title)]; [notification_ setSubtitle:base::SysUTF16ToNSString(options.subtitle)];