0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd:Ⓜ️:media::file: Switch to b64 urlsafe for room_id.

This commit is contained in:
Jason Volk 2020-08-20 21:18:03 -07:00
parent 96587f2e6d
commit 58d61f4675

View file

@ -425,7 +425,7 @@ ircd::m::media::file::room_id(room::id::buf &out,
out =
{
b58::encode(buf, hash), my_host()
b64::encode_unpadded<b64::urlsafe>(buf, hash), my_host()
};
return out;