Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
webui: Fix display of signal strength if scale differs from SNR scale
  • Loading branch information
herrnst authored and perexg committed Mar 25, 2016
1 parent beea23c commit e08e278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/status.js
Expand Up @@ -433,7 +433,7 @@ tvheadend.status_streams = function(panel, index)
colored: true,
ceiling: 65535,
tvh_renderer: function(v, p, record) {
var scale = record.get('snr_scale');
var scale = record.get('signal_scale');
if (scale == 1)
return v;
if (scale == 2) {
Expand Down

0 comments on commit e08e278

Please sign in to comment.