X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Froomops.c;fp=webcit%2Froomops.c;h=cf0b370bb43db8734a57716ce67bb8afe66d917a;hp=8720aecbc4e782b46d8c8c7c08898f289358aa1f;hb=a9e34f4f21db2a290905929e6221eb5aa79f0192;hpb=e82805b6522aa9d870e4fdf8c6bceee1b712aa1f diff --git a/webcit/roomops.c b/webcit/roomops.c index 8720aecbc..cf0b370bb 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -127,8 +127,10 @@ void dotgoto(void) { * goto next room */ void smart_goto(const StrBuf *next_room) { - gotoroom(next_room); - readloop(readnew, eUseDefault); + if (gotoroom(next_room) == 2) + readloop(readnew, eUseDefault); + else + do_404(); } /* @@ -182,6 +184,10 @@ long gotoroom(const StrBuf *gname) long err = 0; int room_name_supplied = 0; int is_baseroom = 0; + int failvisibly; + + /* on fail, should we fallback to _BASEROOM_? */ + failvisibly = ibstr("failvisibly"); /* store ungoto information */ if (StrLength(gname) > 0) { @@ -206,6 +212,10 @@ long gotoroom(const StrBuf *gname) } StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, &err) != 2) { + if (failvisibly) { + FreeStrBuf(&Buf); + return err; + } serv_puts("GOTO _BASEROOM_"); StrBuf_ServGetln(Buf); /*