Skip to content

Commit

Permalink
looking for error (to be removed)
Browse files Browse the repository at this point in the history
  • Loading branch information
le-jeu committed Jul 30, 2023
1 parent 3e837e9 commit b5df21e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1304,8 +1304,10 @@ public boolean isGoogleHostname(String hostname) {
* @return <code>true</code> if a host name allowed to be load in IITC.
*/
public boolean isAllowedHostname(String hostname) {
// shortcut for .google.* hostnames
Log.d("isAllowedHostname(\"" + hostname + "\")");
// shortcut for .google.* hostnames
if (isGoogleHostname(hostname)) {
Log.d("match google hostname: " + hostname);
return true;
}
for (String key : mAllowedHostnames.keySet()) {
Expand Down

0 comments on commit b5df21e

Please sign in to comment.