diff --git a/src/Core/Services/Implementations/CipherService.cs b/src/Core/Services/Implementations/CipherService.cs index a299570fe6..2b423e4a00 100644 --- a/src/Core/Services/Implementations/CipherService.cs +++ b/src/Core/Services/Implementations/CipherService.cs @@ -44,7 +44,7 @@ namespace Bit.Core.Services await _cipherRepository.CreateAsync(cipher); // push - await _pushService.PushSyncCipherCreateAsync(cipher); + //await _pushService.PushSyncCipherCreateAsync(cipher); } else { @@ -52,7 +52,7 @@ namespace Bit.Core.Services await _cipherRepository.ReplaceAsync(cipher); // push - await _pushService.PushSyncCipherUpdateAsync(cipher); + //await _pushService.PushSyncCipherUpdateAsync(cipher); } } @@ -61,7 +61,7 @@ namespace Bit.Core.Services await _cipherRepository.DeleteAsync(cipher); // push - await _pushService.PushSyncCipherDeleteAsync(cipher); + //await _pushService.PushSyncCipherDeleteAsync(cipher); } public async Task SaveFolderAsync(Folder folder)