Fix empty alias being handled different than none

This commit is contained in:
Marvin W 2023-04-22 20:07:09 +02:00
parent 03e367ecb8
commit 6e60cfcbbe
No known key found for this signature in database
GPG key ID: 072E9235DB996F2A

View file

@ -34,6 +34,7 @@ namespace Dino {
if (self_word != null && (account.alias == null || account.alias.length == 0)) { if (self_word != null && (account.alias == null || account.alias.length == 0)) {
return self_word; return self_word;
} }
if (account.alias != null && account.alias.length == 0) return null;
return account.alias; return account.alias;
} }
Roster.Item roster_item = stream_interactor.get_module(RosterManager.IDENTITY).get_roster_item(account, jid); Roster.Item roster_item = stream_interactor.get_module(RosterManager.IDENTITY).get_roster_item(account, jid);