Added album sort name in subsonic responses, fixes #419
This commit is contained in:
@@ -26,12 +26,14 @@ namespace Database
|
||||
class Session;
|
||||
|
||||
using Version = std::size_t;
|
||||
static constexpr Version LMS_DATABASE_VERSION{ 52 };
|
||||
|
||||
class VersionInfo
|
||||
{
|
||||
public:
|
||||
using pointer = Wt::Dbo::ptr<VersionInfo>;
|
||||
|
||||
VersionInfo();
|
||||
|
||||
static VersionInfo::pointer getOrCreate(Session& session);
|
||||
static VersionInfo::pointer get(Session& session);
|
||||
|
||||
@@ -45,7 +47,7 @@ namespace Database
|
||||
}
|
||||
|
||||
private:
|
||||
int _version{ LMS_DATABASE_VERSION };
|
||||
int _version;
|
||||
};
|
||||
|
||||
namespace Migration
|
||||
|
||||
Reference in New Issue
Block a user