bugfix
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
### 4.1.3 (2014-06-25)
|
||||
|
||||
- Only dispose response if available
|
||||
|
||||
### 4.1.2 (2014-06-18)
|
||||
|
||||
- Add force param to login+registration
|
||||
|
||||
@@ -260,7 +260,11 @@ namespace PocketSharp
|
||||
finally
|
||||
{
|
||||
request.Dispose();
|
||||
response.Dispose();
|
||||
|
||||
if (response != null)
|
||||
{
|
||||
response.Dispose();
|
||||
}
|
||||
}
|
||||
|
||||
// cache response
|
||||
|
||||
@@ -22,5 +22,5 @@
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("4.1.2")]
|
||||
[assembly: AssemblyFileVersion("4.1.2")]
|
||||
[assembly: AssemblyVersion("4.1.3")]
|
||||
[assembly: AssemblyFileVersion("4.1.3")]
|
||||
Reference in New Issue
Block a user