Skip to content

Commit

Permalink
check if current branch is being built
Browse files Browse the repository at this point in the history
  • Loading branch information
Arlen22 committed Jan 9, 2025
1 parent c7dc21a commit 14b54ed
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions plugins/tiddlywiki/multiwikiserver/modules/startup.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ exports.startup = function() {
const store = setupStore();
$tw.mws = {
store: store,
serverManager: new ServerManager({
store: store
})
serverManager: new ServerManager()
};
}

Expand All @@ -44,7 +42,7 @@ function setupStore() {
return store;
}

function ServerManager(store) {
function ServerManager() {
this.servers = [];
}

Expand Down

0 comments on commit 14b54ed

Please sign in to comment.