Skip to content

Commit

Permalink
Fix rig/raw status for new format, bump release
Browse files Browse the repository at this point in the history
  • Loading branch information
mddub committed Oct 10, 2016
1 parent c475b08 commit 6afe2bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file modified release/urchin-cgm.pbw
Binary file not shown.
4 changes: 3 additions & 1 deletion src/js/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ var data = function(c, maxSGVCount) {
d.getRawData(config),
]).then(function(results) {
var rigBattery = results[0];
var text = results.filter(
var text = results.map(function(v) {
return v.text;
}).filter(
function(v) { return v !== '-'; }
).join(' ') || '-';
return {text: text, recency: rigBattery.recency};
Expand Down

0 comments on commit 6afe2bb

Please sign in to comment.