diff --git a/source/net/filebot/WebServices.java b/source/net/filebot/WebServices.java index 6051cbf0..5eb419a8 100644 --- a/source/net/filebot/WebServices.java +++ b/source/net/filebot/WebServices.java @@ -283,7 +283,7 @@ public final class WebServices { public static void setLogin(String id, String user, String password) { if (user == null || password == null || user.contains(":") || (user.isEmpty() && !password.isEmpty()) || (!user.isEmpty() && password.isEmpty())) { - throw new IllegalArgumentException("Illegal login: " + user); + throw new IllegalArgumentException(String.format("Illegal login: %s:%s", user, password)); } Settings settings = Settings.forPackage(WebServices.class);