Skip to content

Commit

Permalink
removed the usingRawForecast param in the few places it was still used
Browse files Browse the repository at this point in the history
  • Loading branch information
jasoncalabrese committed Jul 6, 2015
1 parent f70cf8d commit 3e51d49
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/plugins/ar2.js
Expand Up @@ -63,7 +63,7 @@ function init() {
sbx.notifications.requestNotify({
level: prop.level
, title: buildTitle(prop, sbx)
, message: sbx.buildDefaultMessage(prop.usingRaw)
, message: sbx.buildDefaultMessage()
, eventName: prop.eventName
, pushoverSound: pushoverSound(prop, sbx)
, plugin: ar2
Expand Down
4 changes: 2 additions & 2 deletions lib/sandbox.js
Expand Up @@ -175,8 +175,8 @@ function init ( ) {
return lines;
};

sbx.buildDefaultMessage = function buildDefaultMessage(usingRawForecast) {
return sbx.prepareDefaultLines(usingRawForecast).join('\n');
sbx.buildDefaultMessage = function buildDefaultMessage() {
return sbx.prepareDefaultLines().join('\n');
};

function displayBg (bg) {
Expand Down

0 comments on commit 3e51d49

Please sign in to comment.