Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit aebf8ab

Browse files
committed
fix pcl build error
1 parent a766081 commit aebf8ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ServiceStack.Text/HttpUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ public static Task<string> SendStringToUrlAsync(this string url, string method =
353353
var webRes = task.Result;
354354
if (responseFilter != null)
355355
{
356-
responseFilter(webRes);
356+
responseFilter((HttpWebResponse)webRes);
357357
}
358358

359359
using (var stream = webRes.GetResponseStream())

0 commit comments

Comments
 (0)