Revert "feat(android) Check server is reachable before starting background backup (#8989)" (#9324)

This reverts commit 0435de50f8.
This commit is contained in:
Alex 2024-05-09 12:16:53 -05:00 committed by GitHub
parent f9dc870166
commit 55031cc117
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 29 additions and 111 deletions

View file

@ -171,9 +171,9 @@ class BackgroundServicePlugin: NSObject, FlutterPlugin {
return
}
// Requires 3 or more arguments in the array
guard args.count >= 3 else {
print("Requires 3 or more arguments and received \(args.count)")
// Requires 3 arguments in the array
guard args.count == 3 else {
print("Requires 3 arguments and received \(args.count)")
result(FlutterMethodNotImplemented)
return
}