Skip to content

Commit

Permalink
Disabling readarr due to issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Petersen committed Aug 4, 2021
1 parent f679c5c commit a5f2d60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ async function checkEnabled() {
loadedSettings.readarrToken !== undefined &&
loadedSettings.enableReadarr !== 'false'
) {
isReadarrEnabled = true;
isReadarrEnabled = false; // force to false for now! true;
}
// display status
console.log(
Expand Down
6 changes: 3 additions & 3 deletions myviews/settings.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
</ul>

</div>
<% if(latestVersion !== undefined && latestVersion !== version.toString() && (typeof errors == 'undefined' || errors.length == 0)){%>
<% if(latestVersion !== undefined && latestVersion !== "" && latestVersion !== version.toString() && (typeof errors == 'undefined' || errors.length == 0)){%>
<p id="rcorners-u"><span id="message">Update</span><br>Please upgrade to Posterr v<%=latestVersion%></br>
<%}%>

Expand Down Expand Up @@ -789,7 +789,7 @@
</div>
<hr>
<div class="panel panel-default">
<!-- <div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingNine">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseNine" aria-expanded="false" aria-controls="collapseNine">
Expand Down Expand Up @@ -830,7 +830,7 @@
</div>
</div>
</div>
</div> -->
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.10.0",
"version": "1.10.1",
"description": "A digital display for your media",
"main": "index.js",
"bin": "index.js",
Expand Down

0 comments on commit a5f2d60

Please sign in to comment.