1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-09 23:17:29 +02:00

fix(mobile): fix typos (#16456)

Found via codespell
This commit is contained in:
luzpaz
2025-03-01 15:06:47 -05:00
committed by GitHub
parent 0cb3dc6211
commit c8eef5ad4d
11 changed files with 14 additions and 14 deletions

View File

@@ -160,7 +160,7 @@ class BackgroundServicePlugin: NSObject, FlutterPlugin {
}
}
// Called by the flutter code when enabled so that we can turn on the backround services
// Called by the flutter code when enabled so that we can turn on the background services
// and save the callback information to communicate on this method channel
public func handleBackgroundEnable(call: FlutterMethodCall, result: FlutterResult) {
@@ -249,7 +249,7 @@ class BackgroundServicePlugin: NSObject, FlutterPlugin {
result(true)
}
// Returns the number of currently scheduled background processes to Flutter, striclty
// Returns the number of currently scheduled background processes to Flutter, strictly
// for debugging
func handleNumberOfProcesses(call: FlutterMethodCall, result: @escaping FlutterResult) {
BGTaskScheduler.shared.getPendingTaskRequests { requests in
@@ -355,7 +355,7 @@ class BackgroundServicePlugin: NSObject, FlutterPlugin {
let isExpensive = wifiMonitor.currentPath.isExpensive
if (isExpensive) {
// The network is expensive and we have required Wi-Fi
// Therfore, we will simply complete the task without
// Therefore, we will simply complete the task without
// running it
task.setTaskCompleted(success: true)
return