remove console log

This commit is contained in:
KGT1 2020-09-08 13:19:39 +02:00
parent 5a8ab5dc26
commit 0dc2230259

View File

@ -15,7 +15,6 @@ jellyfinClientManager.init();
jellyfinClientManager.getJellyfinClient().getPublicSystemInfo().then((response) => { jellyfinClientManager.getJellyfinClient().getPublicSystemInfo().then((response) => {
jellyfinClientManager.getJellyfinClient().authenticateUserByName(CONFIG["jellyfin-username"],CONFIG["jellyfin-password"]).then((response)=>{ jellyfinClientManager.getJellyfinClient().authenticateUserByName(CONFIG["jellyfin-username"],CONFIG["jellyfin-password"]).then((response)=>{
console.log(response)
jellyfinClientManager.getJellyfinClient().setAuthenticationInfo(response.AccessToken, response.SessionInfo.UserId); jellyfinClientManager.getJellyfinClient().setAuthenticationInfo(response.AccessToken, response.SessionInfo.UserId);
}); });
}) })