Put timestamp of edited message into the job

This commit is contained in:
Fedor Indutny 2023-05-15 14:26:36 -07:00 committed by GitHub
parent f6676db4d3
commit 11456d100f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 116 additions and 14 deletions

View file

@ -4,5 +4,7 @@
import { isEnabled } from '../RemoteConfig';
export function canEditMessages(): boolean {
return isEnabled('desktop.editMessageSend');
return (
isEnabled('desktop.internalUser') || isEnabled('desktop.editMessageSend')
);
}