Skip to content

Commit

Permalink
feat(bot): bump recording ID size to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
Snazzah committed Feb 6, 2024
1 parent 362db31 commit 4bc7268
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/bot/src/modules/recorder/recording.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dayjs.extend(duration);

const opus = new OpusEncoder(48000, 2);
const alphabet = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
const recNanoid = customAlphabet(alphabet, 10);
const recNanoid = customAlphabet(alphabet, 12);
const recIndicator = / *!?\[RECORDING\] */;

export const NOTE_TRACK_NUMBER = 65536;
Expand Down

0 comments on commit 4bc7268

Please sign in to comment.