Skip to content
This repository has been archived by the owner on Oct 25, 2023. It is now read-only.

Commit

Permalink
chore: remove snap support
Browse files Browse the repository at this point in the history
  • Loading branch information
MessiasLima committed Feb 28, 2022
1 parent 99e6d91 commit cfab63a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/interface/synchronization/SynchronizationInterface.js
Expand Up @@ -10,7 +10,7 @@ synchronizationService
if (isSynchronizing) {
isSynchronizingCache = isSynchronizing;
}
ipcMain.emit(
ipcMain?.emit(
InterfaceChannel.synchronization.isRunning,
isSynchronizing,
);
Expand Down
4 changes: 2 additions & 2 deletions core/service/synchronization/SynchornizationService.js
Expand Up @@ -2,7 +2,7 @@ const { forkJoin, Subject } = require('rxjs');

const flathubSynchronizer = require('./synchronizer/FlathubSynchronizer');
const appImageHubSynchronizer = require('./synchronizer/AppImageHubSynchronizer');
const snapStoreSynchronizer = require('./synchronizer/SnapStoreSynchronizer');
// const snapStoreSynchronizer = require('./synchronizer/SnapStoreSynchronizer');
const settingsService = require('../settings/SettingsService');

const DAY_IN_MILLIS = 1000 * 60 * 60 * 24 * 7;
Expand Down Expand Up @@ -35,7 +35,7 @@ function synchronize() {
forkJoin([
flathubSynchronizer.startSynchronization(),
appImageHubSynchronizer.startSynchronization(),
snapStoreSynchronizer.startSynchronization(),
// snapStoreSynchronizer.startSynchronization(),
]).subscribe(
() => {
console.log('Synchronization succeeded');
Expand Down

0 comments on commit cfab63a

Please sign in to comment.