don't try to use experimental user code

This commit is contained in:
ansuz
2016-09-20 16:22:00 +02:00
parent 259896a373
commit fa8199bc75

View File

@@ -497,12 +497,15 @@ define([
Store.ready(function (err, store) { Store.ready(function (err, store) {
common.store = env.store = store; common.store = env.store = store;
cb();
return;
/*
authorize(function (err, proxy) { authorize(function (err, proxy) {
/* /*
TODO TODO
listen for log(in|out) events listen for log(in|out) events
update information accordingly update information accordingly
*/ * /
store.change(function (data) { store.change(function (data) {
if (data.key === User.localKey) { if (data.key === User.localKey) {
@@ -536,7 +539,7 @@ define([
userStore = env.userStore = User.prepareStore(proxy); userStore = env.userStore = User.prepareStore(proxy);
cb(); cb();
}); }); */
}); });
}; };