Skip to content

Commit

Permalink
Add todo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpablodrexler committed Sep 24, 2023
1 parent 82c2127 commit 3a64694
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using JPPhotoManager.Domain.Interfaces;
using log4net;
using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.Data;
using System.IO;
using System.Reflection;
Expand Down Expand Up @@ -31,7 +30,7 @@ public AssetRepository(AppDbContext appDbContext, IStorageService storageService
_storageService = storageService;
_userConfigurationService = userConfigurationService;
Thumbnails = new Dictionary<string, byte[]>();
_syncLock = new object();
_syncLock = new object(); // TODO: Use the same lock object for all the repositories.
}

public List<Folder> ReadFolders()
Expand Down

0 comments on commit 3a64694

Please sign in to comment.