fix(core): update

This commit is contained in:
2019-08-13 18:43:33 +02:00
parent e12aa7e961
commit e8f2e04d1c
2 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ export class Universe {
/**
* adds a channel to the Universe
*/
public async addChannel(nameArg: string, passphraseArg: string) {
public addChannel(nameArg: string, passphraseArg: string) {
const newChannel = UniverseChannel.createChannel(this, nameArg, passphraseArg);
}