Don't overwrite PMS_UUID when fetching a new token

This commit is contained in:
JonnyWong16 2020-06-23 19:47:01 -07:00
parent fef428202f
commit 805d45bd33
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -2556,7 +2556,6 @@ $(document).ready(function() {
function OAuthSuccessCallback(authToken) { function OAuthSuccessCallback(authToken) {
var x_plex_headers = getPlexHeaders(); var x_plex_headers = getPlexHeaders();
$("#pms_token").val(authToken); $("#pms_token").val(authToken);
$("#pms_uuid").val(x_plex_headers['X-Plex-Client-Identifier']);
$("#token_verify").html('<i class="fa fa-check"></i>').fadeIn('fast'); $("#token_verify").html('<i class="fa fa-check"></i>').fadeIn('fast');
getServerOptions(authToken); getServerOptions(authToken);
} }