mirror of https://github.com/zulip/zulip.git
reload: Only add stream_id if it's defined.
This isn't a bug fix, but it does clean up the code. `reload_setup` only uses the `stream_id` if it can parse it as an integer and otherwise falls back to `undefined`, so it makes more sense to not include undefined stream ids.
This commit is contained in:
parent
7a0a71b7d1
commit
9ba6c18e3a
|
@ -59,7 +59,9 @@ function preserve_state(send_after_reload: boolean, save_compose: boolean): void
|
|||
if (msg_type === "stream") {
|
||||
const stream_id = compose_state.stream_id();
|
||||
url += "+msg_type=stream";
|
||||
url += "+stream_id=" + (stream_id ? encodeURIComponent(stream_id) : undefined);
|
||||
if (stream_id) {
|
||||
url += "+stream_id=" + encodeURIComponent(stream_id);
|
||||
}
|
||||
url += "+topic=" + encodeURIComponent(compose_state.topic());
|
||||
} else if (msg_type === "private") {
|
||||
url += "+msg_type=private";
|
||||
|
|
Loading…
Reference in New Issue