Details
Priority
MinorAssignee
UnassignedUnassignedReporter
Sergey PonomarevSergey PonomarevPriority
Minor
Details
Details
Priority
Assignee
Unassigned
UnassignedReporter
Sergey Ponomarev
Sergey PonomarevPriority
Created September 12, 2024 at 7:44 PM
Updated September 12, 2024 at 7:44 PM
Some clients (Gajim) allows to join a chat room with an empty nickname. They shouldn’t but anyway this happens now.
One of the issues I described here
https://github.com/igniterealtime/Smack/pull/617
But there are issues in the Spark itself that probably can be more or less easily fixed or cause less harm.
In the Spark I got and exception when leaving a chat in which I'm an admin with an empty nickname:
WARNING: ChatRoomDecorator: finished smack@conference.igniterealtime.org Exception in thread "AWT-EventQueue-0" java.lang.IllegalArgumentException: The Resourcepart must not be null at org.jxmpp.jid.impl.AbstractJid.requireNonNull(AbstractJid.java:262) at org.jxmpp.jid.impl.LocalDomainAndResourcepartJid.<init>(LocalDomainAndResourcepartJid.java:50) at org.jxmpp.jid.impl.JidCreate.entityFullFrom(JidCreate.java:1207) at org.jivesoftware.spark.UserManager.getOccupant(UserManager.java:229) at org.jivesoftware.spark.UserManager.isOwner(UserManager.java:153) at org.jivesoftware.spark.ui.rooms.GroupChatRoom.notifySettingsAccessRight(GroupChatRoom.java:1185) at org.jivesoftware.spark.ui.conferences.GroupChatParticipantList.lambda$setChatRoom$1(GroupChatParticipantList.java:205)
So the
chat.getNickname()
returns null and it's later is parsed with an error.As far I understood the nickname is really needed for a chat.