Check for conversation conflicts before writing

This commit is contained in:
Josh Perez 2021-03-11 20:56:01 -05:00 committed by Josh Perez
parent 58bdf36254
commit 0fd0fac262
5 changed files with 9 additions and 7 deletions

View file

@ -8,5 +8,5 @@ function isStorageFeatureEnabled(): boolean {
}
export function isStorageWriteFeatureEnabled(): boolean {
return isStorageFeatureEnabled() && isEnabled('desktop.storageWrite2');
return isStorageFeatureEnabled() && isEnabled('desktop.storageWrite3');
}