You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a guest joins a public ally accessible room in Talk, the display name does not display (Guest).
It is currently not possible to figure out if a user is a guest or user on the instance so this should be added. Once that's added, projects using the library can use that information to append (Guest) for guest users.
It could also be useful to add a DisplayName() function that will automatically append (Guest).
if ActorID starts with guest/ then
if ActorDisplayName.empty then
return 'Guest'
else
return ActorDisplayName.append(' (Guest)')
fi
else
// current handling
fi
When a guest joins a public ally accessible room in Talk, the display name does not display
(Guest)
.It is currently not possible to figure out if a user is a guest or user on the instance so this should be added. Once that's added, projects using the library can use that information to append
(Guest)
for guest users.It could also be useful to add a
DisplayName()
function that will automatically append(Guest)
.go-nc-talk/ocs/message.go
Lines 36 to 46 in ee3c5d2
cc @nickvergessen
The text was updated successfully, but these errors were encountered: