Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RudiThoeni committed Nov 15, 2024
1 parent d01b1dd commit 1ce64b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion OdhApiImporter/Helpers/CUSTOM/CustomDataOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,11 @@ public async Task<int> UpdateAllODHActivityPoiOldTags(string source)
stapoiv2.Tags = new List<Tags>();
foreach (var tagdict in tags)
{
stapoiv2.Tags.AddRange(tagdict.Value);
foreach(var tagvalue in tagdict.Value)
{
stapoiv2.Tags.Add(tagvalue);
}

}


Expand Down

0 comments on commit 1ce64b8

Please sign in to comment.