mirror of
https://git.youjo.love/youjo/youjo-fe.git
synced 2024-11-20 13:59:55 +01:00
Merge branch 'develop' into 'fix/fix-error-handling-in-profile-tab'
# Conflicts: # CHANGELOG.md
This commit is contained in:
commit
fc4a17aa8c
2 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
- Fixed pinned statuses not appearing in user profiles
|
- Fixed pinned statuses not appearing in user profiles
|
||||||
- Fixed some elements not being keyboard navigation friendly
|
- Fixed some elements not being keyboard navigation friendly
|
||||||
- Fixed error handling when updating various profile images
|
- Fixed error handling when updating various profile images
|
||||||
|
- Fixed your latest chat messages disappearing when closing chat view and opening it again during the same session
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Errors when fetching are now shown with popup errors instead of "Error fetching updates" in panel headers
|
- Errors when fetching are now shown with popup errors instead of "Error fetching updates" in panel headers
|
||||||
|
|
|
@ -21,7 +21,7 @@ const clear = (storage) => {
|
||||||
failedMessageIds.push(message.id)
|
failedMessageIds.push(message.id)
|
||||||
} else {
|
} else {
|
||||||
delete storage.idIndex[message.id]
|
delete storage.idIndex[message.id]
|
||||||
delete storage.idempotencyKeyIndex[message.id]
|
delete storage.idempotencyKeyIndex[message.idempotency_key]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue