simple fix

This commit is contained in:
Beingpax 2025-03-07 19:06:41 +05:45
parent 6eae50d80d
commit 611e443dd2

View File

@ -176,7 +176,7 @@ class ScreenCaptureService: ObservableObject {
// Try multiple times to get a successful capture
for attempt in 1...maxCaptureRetries {
logger.notice("🔄 Capture attempt \(attempt, privacy: .public) of \(maxCaptureRetries, privacy: .public)")
logger.notice("🔄 Capture attempt \(attempt, privacy: .public) of \(self.maxCaptureRetries, privacy: .public)")
// First get window info
guard let windowInfo = getActiveWindowInfo() else {
@ -229,4 +229,4 @@ class ScreenCaptureService: ObservableObject {
logger.notice("❌ All capture attempts failed")
return nil
}
}
}