Skip to content

Commit

Permalink
Fixes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
jarle pedersen committed Jun 19, 2018
1 parent 7e2e973 commit 03ba838
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Text;
using Ionic.Zip;
using Kartverket.Geosynkronisering.Subscriber.DL;
using NLog;
Expand Down Expand Up @@ -65,7 +65,7 @@ public bool UnpackZipFile(string zipfile)
{
try
{
using (var zip = ZipFile.Read(zipfile))
using (var zip = ZipFile.Read(zipfile, new ReadOptions { Encoding = Encoding.UTF8 }))
{
zip.ToList().ForEach(entry =>
{
Expand Down

0 comments on commit 03ba838

Please sign in to comment.