mirror of
https://github.com/mastodon/mastodon.git
synced 2026-08-28 08:46:49 -05:00
Fix call to undefined Base64 method in Multibase (#39618)
Co-authored-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
@@ -24,7 +24,7 @@ class Multibase
|
||||
|
||||
case string[0]
|
||||
when 'u'
|
||||
Base64.decode(string[1...])
|
||||
Base64.urlsafe_decode64(string[1...])
|
||||
when 'z'
|
||||
Base58.base58_to_binary(string[1...], :bitcoin)
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user