You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this has been fixed @tzarebczan but the following code should fix the case sensitive issue in index.js.
function checkTweet(tweet, msg) { switch (msg[1].toLowerCase()) { case "help": doHelp(tweet, msg); break; case "balance": doBalance(tweet, msg); break; case "deposit": doDeposit(tweet, msg); break; case "withdraw": doWithdraw(tweet, msg); break; case "tip": doTip(tweet, msg); break; case "terms": doTerms(tweet, msg); break; case "lbryian": logger.info("Got a command with the old format, handling it..."); checkTweet(tweet, msg.splice(1)); break; } }
see https://twitter.com/GhostsAncestral/status/1169974922703069185
The text was updated successfully, but these errors were encountered: