Author: ygrego Date: 2015-05-28 16:06:46 +0000 (Thu, 28 May 2015) New Revision: 1562 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1562 Log: Addition of argument to constructor of "ChannelService" in method "_setChannelConfig". Modified: oipf/js/impl/OipfObjectFactory.js Modified: oipf/js/impl/OipfObjectFactory.js =================================================================== --- oipf/js/impl/OipfObjectFactory.js 2015-05-28 16:01:07 UTC (rev 1561) +++ oipf/js/impl/OipfObjectFactory.js 2015-05-28 16:06:46 UTC (rev 1562) @@ -659,7 +659,11 @@ _setChannelConfig: function(channelListJson) { var channelService = - new ChannelService(null, channelListJson.channelList.channel); + new ChannelService(this._oipfConfiguration.currentChannel, + this._oipfConfiguration.channelNumber, + this._oipfConfiguration.channelOrigin, + channelListJson.channelList.channel + ); this.channelConfig = new ChannelConfig(channelService); },