mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-23 17:23:08 +02:00
fix: converter returning sharkeyid wrong
This commit is contained in:
parent
ceffd53d47
commit
9dfc4dbf02
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ export function convertId(in_id: string, id_convert_type: IdConvertType): string
|
||||||
outStr = charFromNum(remainder) + outStr;
|
outStr = charFromNum(remainder) + outStr;
|
||||||
input /= BigInt(36);
|
input /= BigInt(36);
|
||||||
}
|
}
|
||||||
return outStr;
|
let ReversedoutStr = outStr.split("").reduce((acc, char) => char + acc, "");
|
||||||
|
return ReversedoutStr;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
throw new Error('Invalid ID conversion type');
|
throw new Error('Invalid ID conversion type');
|
||||||
|
|
Loading…
Reference in a new issue