Skip to content

Commit

Permalink
Uncommented the custom flag check
Browse files Browse the repository at this point in the history
  • Loading branch information
randywoods committed Apr 16, 2021
1 parent 9d26c8e commit 0925438
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public Stream ArchiveStream(int assessmentId)
var set = context.SETS
.Include(s => s.Set_Category_)
.Where(s => s.Set_Name == standard.Set_Name).FirstOrDefault();
if (set == null /*|| !set.Is_Custom*/)
if (set == null || !set.Is_Custom)
{
continue;
}
Expand Down

0 comments on commit 0925438

Please sign in to comment.