Conversation
…gence Co-authored-by: numbers-official <181934381+numbers-official@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] [Feature][High] Add IndexedDB recovery and upload retry with backoff
Add IndexedDB connection recovery, upload retry with exponential backoff, and remove diverged type definitions
Mar 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three reliability and maintainability fixes: IndexedDB connections had no recovery path on unexpected closure, transient upload failures were immediately terminal, and stale duplicate type definitions in
types/index.tshad diverged from the real types used by the codebase.IndexedDB connection recovery (
IndexedDBService.ts)onclose/onversionchangehandlers on the openedIDBDatabaseinstance to resetthis.db = null, soensureDB()triggers a freshinit()rather than returning a closed, unusable handle.Upload retry with exponential backoff (
UploadService.ts)TypeError, HTTP 5xx, timeout/connection messages) are retried up to 3 times with 2 s → 4 s → 8 s backoff before the asset is markedfailed.handleUploadErrorinto focused helpers:markAssetFailed,isTransientError,sleep.Remove stale type definitions (
types/index.ts)UserSettings,StorageKeys,ScreenshotCapturedMessage, andUploadProgressMessage— all exported but never imported anywhere.StoredSettingsinStorageService.tsis the single authoritative settings type.Original prompt
📱 Kick off Copilot coding agent tasks wherever you are with GitHub Mobile, available on iOS and Android.