removed awaits that were causing issues with error handling

This commit is contained in:
Kendall Werts 2019-12-20 20:41:48 -06:00
parent 136aa3ce0e
commit 063b7509bd

View file

@ -564,10 +564,10 @@ const assignManager = {
console.log("inLocal: ", localInfo);
const beenSynced = await assignManager.storageArea.getSynced();
if (beenSynced){
await runSync();
runSync();
return;
}
await runFirstSync();
runFirstSync();
},
};