diff --git a/web.d b/web.d index d1fb3b2..615ef9b 100644 --- a/web.d +++ b/web.d @@ -1094,7 +1094,7 @@ void run(Provider)(Cgi cgi, Provider instantiation, size_t pathInfoStartingPoint params[i].value = value; } - form = createAutomaticForm(new Document("", true, true), fun);// params, beautify(fun.originalName)); foreach(k, v; cgi.get) form.setValue(k, v); @@ -2281,6 +2281,12 @@ class Session { _sessionId = info[0]; auto hash = info[1]; + if(_sessionId.length == 0) { + // there is no session + _readOnly = true; + return; + } + // FIXME: race condition if the session changes? enforce(hashToString(SHA256(readText(getFilePath()))) == hash); _readOnly = true;