|
|
@@ -106,9 +106,9 @@ public abstract class BaseFgtWeb extends BaseFragment implements UMShareListener
|
|
|
if (url.contains("#") && url.contains("?") && url.indexOf("#") < url.indexOf("?")) {
|
|
|
String host = url.substring(0, url.indexOf("#"));
|
|
|
String hash = url.substring(url.indexOf("#"), url.indexOf("?"));
|
|
|
- String query = url.substring(url.indexOf("?"));
|
|
|
- query += "&stamp=" + (System.currentTimeMillis() / 60_000);
|
|
|
- url = host + query + hash;
|
|
|
+ String query = url.substring(url.indexOf("?") + 1);
|
|
|
+ String stamp = "stamp=" + (System.currentTimeMillis() / 60_000);
|
|
|
+ url = host + "?" + stamp + hash + "?" + stamp + "&" + query;
|
|
|
}
|
|
|
if (addSheepUserAgent) {
|
|
|
Map<String, String> extraHeaders = new HashMap<>();
|