Created
July 21, 2021 13:52
-
-
Save ItsOnlyBinary/50fe00a316a45cf0bfc08a0d1e3d0bf5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kiwi.plugin('force_one_network', function(kiwi, log) { | |
const server = kiwi.state.getSetting('settings.startupOptions.server'); | |
kiwi.state.networks.forEach((network) => { | |
if (server !== network.connection.server) { | |
kiwi.state.removeNetwork(network.id); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment