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
Fix "Sucessfully updated" text not appearing after updating
Create a new variable `update_success` that bypasses the other status options when true. The "Successfully updated!" string would never actually appear, since the async update check would override it later with "You are using the latest version!" (`update == 2`).
This text only started appearing before due to a bug solved in 9440548, in which the update check would be stuck at "Checking for updates...". Since the logic for actually verifying if there's a newer version was never executed, the `update` status "had a chance" to stay set to 3, which would display the text properly.
0 commit comments