Return an error when the pad has been deleted from the server

This commit is contained in:
yflory 2018-10-16 17:49:24 +02:00
parent 9f0398826d
commit f4d5a7567f

View file

@ -58,6 +58,11 @@ define([
Session.network = info.network;
finish(Session, void 0, rt.getUserDoc());
};
config.onChannelError = function (info) {
finish(Session, info.error);
};
overwrite(config, opt);
Session.realtime = CPNetflux.start(config);