Only allow driveless mode for existing pads

pull/1/head
yflory 4 years ago
parent 18e995f63a
commit c168393c21

@ -221,8 +221,11 @@ define([
} }
} catch (e) { console.error(e); } } catch (e) { console.error(e); }
// NOTE: Driveless mode should only work for existing pads, but we can't check that
// before creating the worker because we need the anon RPC to do so.
// We're only going to check if a hash exists in the URL or not.
Cryptpad.ready(waitFor(), { Cryptpad.ready(waitFor(), {
noDrive: cfg.noDrive && AppConfig.allowDrivelessMode, noDrive: cfg.noDrive && AppConfig.allowDrivelessMode && currentPad.hash,
driveEvents: cfg.driveEvents, driveEvents: cfg.driveEvents,
cache: Boolean(cfg.cache), cache: Boolean(cfg.cache),
currentPad: currentPad currentPad: currentPad

Loading…
Cancel
Save