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
just a suggestion:
Maybe it would be better (suggestion) to have some random room name? Maybe a hash of username and domain? This would make collisions more unlikely.
Olaf
The text was updated successfully, but these errors were encountered:
Hi,
I suggest using a MD5 hash from the avatar variable. This should make private rooms pretty private.
The changes that need to be done:
In sessionpriv.php
change echo "roomName: \"".urlencode($sessionnorm)."\",\n";
to echo "roomName: \"".md5($avatar)."\",\n";
and change "room" => urlencode($sessionnorm),
to "room" => md5($avatar),
Hi,
just a suggestion:
Maybe it would be better (suggestion) to have some random room name? Maybe a hash of username and domain? This would make collisions more unlikely.
Olaf
The text was updated successfully, but these errors were encountered: