Skip to content

Commit

Permalink
add 1.46 device message
Browse files Browse the repository at this point in the history
  • Loading branch information
r10s committed May 30, 2024
1 parent 7323cc0 commit c89b2e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deltachat-ios/Controller/ChatListViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,10 @@ class ChatListViewController: UITableViewController {

// update messages - for new messages, do not reuse or modify strings but create new ones.
// it is not needed to keep all past update messages, however, when deleted, also the strings should be deleted.
let deviceMsgLabel = "update_1_44c_ios2"
let deviceMsgLabel = "update_1_46e_ios"
if !dcAccounts.isFreshlyAdded(id: dcContext.id) {
let msg = dcContext.newMessage(viewType: DC_MSG_TEXT)
msg.text = String.localizedStringWithFormat(String.localized("update_1_44_ios"), "https://get.delta.chat/#changelogs")
msg.text = String.localizedStringWithFormat(String.localized("update_1_46_ios"), "https://get.delta.chat/#changelogs")
dcContext.addDeviceMessage(label: deviceMsgLabel, msg: msg)
} else {
dcContext.addDeviceMessage(label: deviceMsgLabel, msg: nil)
Expand Down

0 comments on commit c89b2e1

Please sign in to comment.