Skip to content

Commit

Permalink
Fix: permission import. (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
kavics authored Mar 12, 2024
1 parent 04d4819 commit c28effc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SenseNet.IO/Implementations/FsReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public Task<bool> ReadByReferenceUpdateTasksAsync(CancellationToken cancel)
var metaFilePath = Path.GetFullPath(Path.Combine(ReaderRootPath, relativePath)) + ".Content";
var name = ContentPath.GetName(repositoryPath);
var content = new FsContent(name, relativePath, metaFilePath, false, false, _logger);
content.InitializeMetadata(task.BrokenReferences, task.RetryPermissions);
content.InitializeMetadata(task.BrokenReferences, !task.RetryPermissions);
_content = content;

return Task.FromResult(true);
Expand Down

0 comments on commit c28effc

Please sign in to comment.