Skip to content

Commit

Permalink
fix(community): fix community image not updating
Browse files Browse the repository at this point in the history
Fixes #16688

Fixes the issue by adding a version to the URL on the status-go side. No extra code needed on our side.
The only change is that we no longer need the `addTimestampToURL` hack for the community now.
  • Loading branch information
jrainville committed Dec 2, 2024
1 parent 674b316 commit 20ee8d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/app/AppLayouts/Chat/views/ChatHeaderContentView.qml
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ Item {

StatusChatInfoButton {
readonly property string emojiIcon: chatContentModule? chatContentModule.chatDetails.emoji : "" // Needed for test
readonly property string assetName: chatContentModule && Utils.addTimestampToURL(chatContentModule.chatDetails.icon)
readonly property string assetName: chatContentModule && chatContentModule.chatDetails.icon

objectName: "chatInfoBtnInHeader"
title: chatContentModule? chatContentModule.chatDetails.name : ""
Expand Down

0 comments on commit 20ee8d5

Please sign in to comment.