Skip to content

Commit

Permalink
Code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
bugthesystem committed Dec 26, 2014
1 parent 2df26b0 commit 77847ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/FireSharp/FirebaseRequestManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,7 @@ public async Task<HttpResponseMessage> DeleteTaskAsync(string path)

public async Task<HttpResponseMessage> PatchTaskAsync<T>(string path, T data)
{
return null;
//return await ProcessRequestTaskAsync(HttpMethod.Patch, path, data);
return await ProcessRequest(new HttpMethod("PATCH"), path, data);
}

public async Task<HttpResponseMessage> Listen(string path)
Expand Down

0 comments on commit 77847ee

Please sign in to comment.