Finish v1.46.18(506)
All checks were successful
WMS - Android (New)/pipeline/head This commit looks good

This commit is contained in:
Giuseppe Scorrano 2025-05-28 12:29:40 +02:00
commit 65cfadcb6e
2 changed files with 3 additions and 3 deletions

View File

@ -10,8 +10,8 @@ apply plugin: 'com.google.gms.google-services'
android {
def appVersionCode = 505
def appVersionName = '1.46.17'
def appVersionCode = 506
def appVersionName = '1.46.18'
signingConfigs {
release {

View File

@ -55,7 +55,7 @@ public class AuthInterceptor implements Interceptor {
.protocol(Protocol.HTTP_1_1)
.code(401)
.message("Unauthorized")
.body(ResponseBody.create(new byte[0], null))
.body(ResponseBody.create(okhttp3.MediaType.get("application/json"), new byte[0]))
.build();
} catch (Exception e) {
return chain.proceed(originalRequest);