Skip to content

Commit

Permalink
Merge branch 'public/9.0' into public/9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelherger committed Jan 7, 2025
2 parents f1c5c4c + b5a6657 commit 7fe0b89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog9.html
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ <h2><a name="v9.0.1" id="v9.0.1"></a>Version 9.0.1</h2>
<li>Only re-initialize menu settings for connected players - otherwise Analytics considers them "active" due to a prefs change.</li>
<li>Fix display of final "Scan done" message in Material skin.</li>
<li>Fix track count caching in "titles" query.</li>
<li>Don't return data from the cache if we fail to deserialize it.</li>
<li><a href="https://github.com/LMS-Community/slimserver/pull/1235">#1235</a> - Need to utf8Decode album title for new &amp; changed (thanks @darrel-k!)</li>
<li><a href="https://github.com/LMS-Community/slimserver/pull/1237">#1237</a> - Fix create table syntax for MySQL (MariaDB) (thanks @JKDingwall!)</li>
<li><a href="https://github.com/LMS-Community/slimserver/pull/1238">#1238</a> - Merge multiple works per track into one single work (thanks @darrel-k!)</li>
Expand Down
2 changes: 1 addition & 1 deletion Slim/Utils/DbCache.pm
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ sub get {
$data = thaw($data);
} if $data;

return $data;
return $@ ? undef : $data;
}

sub remove {
Expand Down

0 comments on commit 7fe0b89

Please sign in to comment.