spelling: requesting

Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2022-03-08 05:17:21 -05:00
parent b35d16ab72
commit 4a563f3d58
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ class CookieInterceptor implements Interceptor {
// seem to set one cookie per request. Some of the login calls in the api-hjarntorget lib
// receives multiple `set-cookie` headers.
String domain = chain.request().url().topPrivateDomain();
Log.d("Skolplattformen", "requseting resource on domain: " + domain);
Log.d("Skolplattformen", "requesting resource on domain: " + domain);
if(domain == null || !domain.contains("goteborg.se") && !domain.contains("funktionstjanster.se")) {
return chain.proceed(chain.request());
}