aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Data/SqliteUserDataRepository.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2021-02-20 10:56:55 +0900
committerGitHub <noreply@github.com>2021-02-20 10:56:55 +0900
commit13d65318eb36f3fc423d8060e0092c8671579ed0 (patch)
tree0d2e50d225e8cf4b82fe23fecc417bf84b1a2287 /Emby.Server.Implementations/Data/SqliteUserDataRepository.cs
parent175e2a5249079e5fd40aefdd646b9ef9a0ced733 (diff)
parent65bab55ca09b09f5229d6e9d50f9cfccfeb8f3d0 (diff)
Merge pull request #5223 from Bond-009/minor10
Minor improvements
Diffstat (limited to 'Emby.Server.Implementations/Data/SqliteUserDataRepository.cs')
-rw-r--r--Emby.Server.Implementations/Data/SqliteUserDataRepository.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteUserDataRepository.cs b/Emby.Server.Implementations/Data/SqliteUserDataRepository.cs
index 2c4e8e0fc..6574db607 100644
--- a/Emby.Server.Implementations/Data/SqliteUserDataRepository.cs
+++ b/Emby.Server.Implementations/Data/SqliteUserDataRepository.cs
@@ -47,7 +47,7 @@ namespace Emby.Server.Implementations.Data
connection.RunInTransaction(
db =>
{
- db.ExecuteAll(string.Join(";", new[] {
+ db.ExecuteAll(string.Join(';', new[] {
"create table if not exists UserDatas (key nvarchar not null, userId INT not null, rating float null, played bit not null, playCount int not null, isFavorite bit not null, playbackPositionTicks bigint not null, lastPlayedDate datetime null, AudioStreamIndex INT, SubtitleStreamIndex INT)",