We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce925a0 commit a06374bCopy full SHA for a06374b
src/gamejolt/GJRequest.hx
@@ -24,7 +24,7 @@ class GJRequest {
24
/**
25
* If `true`, requests will use `Md5` encryptation when creating URLs, otherwise they'll use `Sha1` encryptation.
26
*/
27
- public static var useMd5(default, set):Bool = true;
+ public static var useMd5:Bool = true;
28
29
30
* The current URL this request contains to process.
@@ -372,12 +372,6 @@ class GJRequest {
372
return onError = value;
373
}
374
375
- static function set_useMd5(value:Bool):Bool {
376
- if (isProcessing)
377
- return useMd5;
378
- return useMd5 = value;
379
- }
380
-
381
function set_ignoreSubErrors(value:Bool):Bool {
382
if (isProcessing)
383
return ignoreSubErrors;
0 commit comments