We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46fb959 + 98c8e72 commit 4416013Copy full SHA for 4416013
application/app/Helpers/UuidConverter.php
@@ -5,5 +5,7 @@ function id_to_uuid($id) {
5
}
6
7
function uuid_to_id($uuid) {
8
+ // Strip out hyphens for better compatability with banmanager
9
+ $uuid = str_replace("-","", $uuid);
10
return pack("H*", $uuid);
11
0 commit comments