Skip to content

Commit

Permalink
fix GDrive error message
Browse files Browse the repository at this point in the history
  • Loading branch information
cuong-tran committed Jul 2, 2024
1 parent a8e65dd commit 45e9d19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ class GoogleDriveSyncService(context: Context, json: Json, syncPreferences: Sync

if (retries >= maxRetries) {
logcat(LogPriority.ERROR) { "Max retries reached, exiting sync process" }
throw Exception(context.stringResource(SYMR.strings.error_before_sync_gdrive, "Max retries reached."))
throw Exception("Max retries reached.")
}
} catch (e: Exception) {
logcat(LogPriority.ERROR, throwable = e) { "Error in GoogleDrive beforeSync" }
Expand Down

0 comments on commit 45e9d19

Please sign in to comment.