Browse Source

Pass args through correctly

Samuel Attard 8 years ago
parent
commit
88bf089504
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/browser/browser_mac.mm

+ 1 - 1
atom/browser/browser_mac.mm

@@ -52,7 +52,7 @@ bool Browser::RemoveAsDefaultProtocolClient(const std::string& protocol,
   if (!identifier)
     return false;
 
-  if (!Browser::IsDefaultProtocolClient(protocol))
+  if (!Browser::IsDefaultProtocolClient(protocol, args))
     return false;
 
   NSString* protocol_ns = [NSString stringWithUTF8String:protocol.c_str()];