From: Jim Procter Date: Fri, 2 Oct 2020 10:44:26 +0000 (+0100) Subject: JAL-3762 check for !args || args=="" before overwriting X-Git-Tag: Release_2_11_2_0~34^2~31^2^2^2 X-Git-Url: http://source.jalview.org/gitweb/?p=jalview.git;a=commitdiff_plain;h=refs%2Fheads%2FJalview-JS%2Fbug%2FJAL-3762_URLparamsOverrideInfoArg JAL-3762 check for !args || args=="" before overwriting --- diff --git a/src/jalview/util/Platform.java b/src/jalview/util/Platform.java index efec5f7..bb0c1b6 100644 --- a/src/jalview/util/Platform.java +++ b/src/jalview/util/Platform.java @@ -611,7 +611,7 @@ public class Platform * decodeURI((document.location.href.replace("&","?").split("?j2s")[0] * + "?").split("?")[1].split("#")[0]); a && (System.out.println("URL arguments detected were "+a)) && * (J2S.thisApplet.__Info.urlargs = a.split(" ")); - * (!!J2S.thisApplet.__Info.args || J2S.thisApplet.__Info.args == "" || J2S.thisApplet.__Info.args == "??") && (J2S.thisApplet.__Info.args = a) && (System.out.println("URL arguments were passed to J2S main.")); + * (!J2S.thisApplet.__Info.args || J2S.thisApplet.__Info.args == "" || J2S.thisApplet.__Info.args == "??") && (J2S.thisApplet.__Info.args = a) && (System.out.println("URL arguments were passed to J2S main.")); */ } catch (Throwable t) {