Skip to content

Commit

Permalink
small fix to Awtrix integration
Browse files Browse the repository at this point in the history
  • Loading branch information
petersem committed Feb 13, 2024
1 parent a056406 commit 227d859
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ async function loadNowScreening() {

nsCards.forEach(card => {
var titleText = card.title.toUpperCase();
titleText = titleText;
titleText = titleText.replaceAll("’","'");
var appIcon;
//console.log(card);
var RED = [255,0,0];
Expand All @@ -518,7 +518,7 @@ async function loadNowScreening() {
}

var customApp = {
'text': titleText.replaceAll("’","'"),
'text': titleText,
'pushIcon': 0,
'icon': appIcon,
'color': appColour,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "posterr",
"version": "1.17.4",
"version": "1.17.5",
"description": "A digital display for your media",
"main": "index.js",
"bin": "index.js",
Expand Down

0 comments on commit 227d859

Please sign in to comment.