You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the plugin does not provide any information after the app starts or a reload, whether the update installation was successful or if a rollback had to be performed.
Preferred solution
The plugin should provide information about the success of an update after installation.
Example:
exportinterfaceReadyResult{/** * The identifier of the previous bundle used. * * If `null`, the default bundle was used. */previousBundleId: string|null;/** * The identifier of the current bundle used. * * If `null`, the default bundle is being used. */currentBundleId: string|null;/** * Whether or not the app was reset to the default bundle. */rollback: boolean;}
Alternative options
As a workaround, a flag (e.g., in the Local Storage) can be saved after a sync has been performed. If this flag exists after an app start or a reload, then an update has been installed and the flag can be deleted.
robingenz
changed the title
feat(live-update): notify if last update was successful
feat(live-update)!: notify if last update was successful
Aug 17, 2024
Plugin(s)
Current problem
Currently, the plugin does not provide any information after the app starts or a reload, whether the update installation was successful or if a rollback had to be performed.
Preferred solution
The plugin should provide information about the success of an update after installation.
Example:
Alternative options
As a workaround, a flag (e.g., in the Local Storage) can be saved after a sync has been performed. If this flag exists after an app start or a reload, then an update has been installed and the flag can be deleted.
Additional context
No response
Before submitting
The text was updated successfully, but these errors were encountered: