Skip to content

Commit

Permalink
Current version of Psi+ is 1.5.2069
Browse files Browse the repository at this point in the history
It is based on:
* psi: 444d8e2e
* plugins: 347230b
* psimedia: 478567e
* resources: 63e9dc1
  • Loading branch information
tehnick committed Dec 14, 2024
1 parent e7953b0 commit 2f80496
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/contactlistmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,9 +320,11 @@ void ContactListModel::Private::addContact(PsiContact *contact)

void ContactListModel::Private::removeContact(PsiContact *contact)
{
Q_ASSERT(monitoredContacts.contains(contact));
if (!monitoredContacts.contains(contact))
// Q_ASSERT(monitoredContacts.contains(contact));
if (!monitoredContacts.contains(contact)) {
qWarning("contact %s is not monitored", qUtf8Printable(contact->jid().full()));
return;
}

while (monitoredContacts.contains(contact)) {
QModelIndex index = monitoredContacts.take(contact);
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2068 (2024-12-03, 84fb444f)
1.5.2069 (2024-12-14, 444d8e2e)

0 comments on commit 2f80496

Please sign in to comment.