Never auto-select new groups, since they always come from syncs

Fixes test failure from 2e74cd7831
This commit is contained in:
Dan Stillman 2017-06-16 05:56:06 -04:00
parent 2e74cd7831
commit 859c506913
4 changed files with 20 additions and 7 deletions

View file

@ -354,7 +354,7 @@ var createFeed = Zotero.Promise.coroutine(function* (props = {}) {
feed.refreshInterval = props.refreshInterval || 12;
feed.cleanupReadAfter = props.cleanupReadAfter || 2;
feed.cleanupUnreadAfter = props.cleanupUnreadAfter || 30;
yield feed.saveTx();
yield feed.saveTx(props.saveOptions);
return feed;
});