Skip to content

Commit

Permalink
Merge branch 'master' into TIMOB-27074
Browse files Browse the repository at this point in the history
  • Loading branch information
cb1kenobi committed Jul 8, 2019
2 parents a7adbdf + f8d50e6 commit 1c85a03
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,10 @@ public String getAllResponseHeaders()

public void clearCookies(String url)
{
if (url == null) {
return;
}

List<HttpCookie> cookies = new ArrayList<HttpCookie>(cookieManager.getCookieStore().getCookies());
cookieManager.getCookieStore().removeAll();
String lower_url = url.toLowerCase();
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
},
"lint-staged": {
"iphone/**/*.{m,h}": [
"npx clang-format -style=file -i",
"git add"
"npx clang-format -style=file -i",
"git add"
],
"iphone/TitaniumKit/TitaniumKit/Sources/API/TopTiModule.m": [
"npm run ios-sanity-check --"
Expand Down Expand Up @@ -75,7 +75,7 @@
"lodash.defaultsdeep": "^4.6.0",
"markdown": "0.5.0",
"moment": "^2.22.2",
"node-appc": "^0.3.2",
"node-appc": "^0.3.3",
"node-titanium-sdk": "^3.2.0",
"node-uuid": "1.4.8",
"p-limit": "^2.2.0",
Expand Down
4 changes: 2 additions & 2 deletions support/module/packaged/modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
},
"hyperloop": {
"hyperloop": {
"url": "https://github.com/appcelerator-modules/hyperloop-builds/releases/download/v4.0.2/hyperloop-4.0.2.zip",
"integrity": "sha512-oKxHxWEyW1K+6/XgMoXB8Lt4+aZh4yl6L/+Q0F0lr1IlHkgfEUzzUVDsGfJOJ/KCDfP2WYXFKLz4VssJDJRHWg=="
"url": "https://github.com/appcelerator-modules/hyperloop-builds/releases/download/v4.0.3/hyperloop-4.0.3.zip",
"integrity": "sha512-IXraXPaHVfM4MvdGv5KJCfPJb6mXMNfaDiOL/rFWXt7sug6Ekaa8JJ96MtyNNxz6CGLZgGL46lqjJNRnJQj1mQ=="
}
}
}

0 comments on commit 1c85a03

Please sign in to comment.