Handle add channel state with empty pts
This commit is contained in:
parent
e241dd2785
commit
1d38572733
@ -2828,6 +2828,9 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
|
|||||||
}
|
}
|
||||||
|
|
||||||
function addChannelState (channelID, pts) {
|
function addChannelState (channelID, pts) {
|
||||||
|
if (!pts) {
|
||||||
|
throw new Error('Add channel state without pts ' + channelID);
|
||||||
|
}
|
||||||
if (channelStates[channelID] === undefined) {
|
if (channelStates[channelID] === undefined) {
|
||||||
channelStates[channelID] = {
|
channelStates[channelID] = {
|
||||||
pts: pts,
|
pts: pts,
|
||||||
@ -2842,9 +2845,6 @@ angular.module('myApp.services', ['myApp.i18n', 'izhukov.utils'])
|
|||||||
|
|
||||||
function getChannelState (channelID, pts) {
|
function getChannelState (channelID, pts) {
|
||||||
if (channelStates[channelID] === undefined) {
|
if (channelStates[channelID] === undefined) {
|
||||||
if (!pts) {
|
|
||||||
throw new Error('Get channel empty state without pts ' + channelID);
|
|
||||||
}
|
|
||||||
addChannelState(channelID, pts);
|
addChannelState(channelID, pts);
|
||||||
}
|
}
|
||||||
return channelStates[channelID];
|
return channelStates[channelID];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user