1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-10-02 02:13:04 -04:00
parent af2e209ce4
commit d4f9f432a4
19 changed files with 130 additions and 113 deletions

View file

@ -1,4 +1,5 @@
define([], function () {
'use strict';
function listenerSession(resolve, timeoutMs) {
@ -78,7 +79,7 @@
var stringLength = eventArguments.getDataReader().unconsumedBufferLength;
var receivedMessage = eventArguments.getDataReader().readString(stringLength);
if (receivedMessage == stringToSend) {
if (receivedMessage === stringToSend) {
return;
}
@ -97,7 +98,7 @@
servers.push(server);
} catch (exception) {
onError("Error receiving message: " + receivedMessage);
onError("Error receiving message: " + exception);
}
}