#6158 - missing media folders after migration
This commit is contained in:
committed by
Sebastiaan Janssen
parent
b254b4fcda
commit
934e2066a0
@@ -404,7 +404,7 @@ namespace Umbraco.Core.Persistence.Repositories.Implement
|
|||||||
if (isMedia)
|
if (isMedia)
|
||||||
{
|
{
|
||||||
sql
|
sql
|
||||||
.InnerJoin<MediaVersionDto>().On<ContentVersionDto, MediaVersionDto>((left, right) => left.Id == right.Id);
|
.LeftJoin<MediaVersionDto>().On<ContentVersionDto, MediaVersionDto>((left, right) => left.Id == right.Id);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Any LeftJoin statements need to come last
|
//Any LeftJoin statements need to come last
|
||||||
|
|||||||
Reference in New Issue
Block a user