ソースを参照

Return focus to app after Google OAuth callback.

Activate the macOS app as soon as the loopback redirect arrives so users are brought back immediately instead of staying on the browser page.

Made-with: Cursor
huzaifahayat12 1 週間 前
コミット
cd581796a0
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4 0
      meetings_app/Auth/GoogleOAuthService.swift

+ 4 - 0
meetings_app/Auth/GoogleOAuthService.swift

@@ -389,6 +389,10 @@ private final class OAuthLoopbackServer {
389 389
 
390 390
             if let parsedURL {
391 391
                 self.callbackURL = parsedURL
392
+                DispatchQueue.main.async {
393
+                    // Bring the app back to foreground once OAuth redirects.
394
+                    NSApp.activate(ignoringOtherApps: true)
395
+                }
392 396
                 if let continuation = self.callbackContinuation {
393 397
                     self.callbackContinuation = nil
394 398
                     continuation.resume(returning: parsedURL)