fix: Typo in src/util/MessageFlags.js (#9312)

This commit is contained in:
Steamed_EGG 2023-04-02 18:44:31 +08:00 committed by GitHub
parent f79a9b5450
commit 8f12054c06
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ MessageFlags.FLAGS = {
HAS_THREAD: 1 << 5,
EPHEMERAL: 1 << 6,
LOADING: 1 << 7,
SUPPRESS_NOTIFICATIONS: 1 >> 12,
SUPPRESS_NOTIFICATIONS: 1 << 12,
};
module.exports = MessageFlags;