Skip to content

Commit

Permalink
Fix Bug #22
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tanaka-grani committed Jul 21, 2017
1 parent 4c715d1 commit 4913776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Backlog4net/Internal/File/StreamDataImplBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ public static async Task<T> CreateaAsync(HttpResponseMessage response)
{
var obj = new T();
obj.response = response;
obj.FileName = content.Headers.ContentDisposition.FileNameStar ?? content.Headers.ContentDisposition.FileName;
obj.Content = await content.ReadAsStreamAsync();
obj.FileName = content.Headers.ContentDisposition.FileName;
return obj;
}
catch (Exception)
Expand Down

0 comments on commit 4913776

Please sign in to comment.