Skip to content

Commit

Permalink
Unhide partial filesets from Sets property getter.
Browse files Browse the repository at this point in the history
This concerns issue duplicati#3982.
  • Loading branch information
warwickmm committed Nov 20, 2019
1 parent c395e77 commit 4950e7c
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Duplicati/Library/Main/Database/LocalListDatabase.cs
Expand Up @@ -399,13 +399,8 @@ public IEnumerable<IFileset> Sets
while (rd.Read())
{
var id = rd.GetInt64(0);
if (!dict.ContainsKey(id))
{
continue;
}
var isFullBackup = rd.GetInt32(1);
var e = dict[id];

var filecount = rd.ConvertValueToInt64(2, -1L);
var filesizes = rd.ConvertValueToInt64(3, -1L);

Expand Down

0 comments on commit 4950e7c

Please sign in to comment.