mirror of
https://github.com/openclaw/openclaw.git
synced 2026-02-19 18:39:20 -05:00
style: use bit shift operators for Discord message flags
This commit is contained in:
@@ -21,8 +21,8 @@ import type { RetryRunner } from "../infra/retry-policy.js";
|
||||
|
||||
const execFileAsync = promisify(execFile);
|
||||
|
||||
const DISCORD_VOICE_MESSAGE_FLAG = 8192;
|
||||
const SUPPRESS_NOTIFICATIONS_FLAG = 4096;
|
||||
const DISCORD_VOICE_MESSAGE_FLAG = 1 << 13;
|
||||
const SUPPRESS_NOTIFICATIONS_FLAG = 1 << 12;
|
||||
const WAVEFORM_SAMPLES = 256;
|
||||
|
||||
export type VoiceMessageMetadata = {
|
||||
|
||||
Reference in New Issue
Block a user