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
{{ message }}
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.
When the user is having a bad internet connection (try Network Link Conditioner edge for example) in the More Table View the users name is not loaded and clicking on the blank card is causing a crash.
var user: User? {
didSet {
updateView()
}
}
This code tries to update the view when the user is set. When the user is having a bad internet connection the user is set but user.data is not yet set. This will:
cause a crash in the time user.data is not yet loaded on clicking the cell
cause the name label to never be set since updateViews() is called when user is set not user.data
When the user is having a bad internet connection (try Network Link Conditioner edge for example) in the More Table View the users name is not loaded and clicking on the blank card is causing a crash.
This code tries to update the view when the user is set. When the user is having a bad internet connection the user is set but
user.data
is not yet set. This will:user.data
is not yet loaded on clicking the cellupdateViews()
is called whenuser
is set notuser.data
Related to #70
I was able to fix the crash but the missing name is a bug in the model
The text was updated successfully, but these errors were encountered: