From e38fd8bca751b78e2873a4b610e9352e4de112b6 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Fri, 14 Jan 2022 20:13:16 +0100 Subject: [PATCH] [spidermonkey] location_goto_const --- src/ecmascript/spidermonkey/location.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ecmascript/spidermonkey/location.c b/src/ecmascript/spidermonkey/location.c index c0995506..089bedae 100644 --- a/src/ecmascript/spidermonkey/location.c +++ b/src/ecmascript/spidermonkey/location.c @@ -991,7 +991,7 @@ location_reload(JSContext *ctx, unsigned int argc, JS::Value *rval) return false; } doc_view = vs->doc_view; - location_goto(doc_view, ""); + location_goto_const(doc_view, ""); return true; }