fix(android upload): handle transient imgur errors

This commit is contained in:
Tommaso Casaburi
2026-05-01 22:54:05 +07:00
parent 70791fa80a
commit 3de85520bd
7 changed files with 113 additions and 14 deletions
+1
View File
@@ -10,6 +10,7 @@ export type MediaHostingRuntime = 'web' | 'electron' | 'android';
/** Stage at which an upload attempt failed (enables comparable errors across Electron/Android) */
export type UploadAttemptStage =
| 'blocked' /** captcha/login/challenge detected */
| 'provider_error' /** provider returned an upload-specific error */
| 'file_input' /** file input not found */
| 'submit' /** submit button not found */
| 'timeout' /** upload or extraction timeout */