Update Emby.Server.Implementations/Data/SqliteItemRepository.cs

formatting

Co-Authored-By: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Andrew Mahone 2019-11-07 11:22:07 -05:00 committed by GitHub
parent 4b75e6518e
commit d6aa02ff09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,6 +60,7 @@ namespace Emby.Server.Implementations.Data
queryPrefixText.Append(column);
queryPrefixText.Append(',');
}
queryPrefixText.Length -= 1;
queryPrefixText.Append(") values ");
_mediaAttachmentInsertPrefix = queryPrefixText.ToString();