Standardize multiline raw strings indent

This commit is contained in:
Zoe Roux 2023-11-29 16:24:58 +01:00
parent 6fbd00a38f
commit d1febd13fd
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ namespace Kyoo.Core.Controllers
group by c.id group by c.id
having count(*) > 1 having count(*) > 1
) as c on false ) as c on false
"""; """;
protected override Dictionary<string, Type> Config => new() protected override Dictionary<string, Type> Config => new()
{ {
@ -107,7 +107,7 @@ namespace Kyoo.Core.Controllers
movies movies
inner join link_collection_movie as lm on lm.movie_id = id and lm.collection_id = {collectionId} inner join link_collection_movie as lm on lm.movie_id = id and lm.collection_id = {collectionId}
) as m on false ) as m on false
"""; """;
return await Database.Query<ILibraryItem>( return await Database.Query<ILibraryItem>(
sql, sql,

View File

@ -43,7 +43,7 @@ namespace Kyoo.Core.Controllers
from from
movies movies
) as m on false ) as m on false
"""; """;
protected override Dictionary<string, Type> Config => new() protected override Dictionary<string, Type> Config => new()
{ {