Skip to content

Commit bbd6d0a

Browse files
committed
Leases for PostSharp <5.0 were not handled correctly.
1 parent b999dc3 commit bbd6d0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PostSharp.LicenseServer/Lease.ashx.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void ProcessRequest(HttpContext context)
6060
if ( string.IsNullOrEmpty( versionString ) )
6161
{
6262
// Versions < 5.0 do not include version in the request.
63-
version = new Version( 2, 0, 0 );
63+
version = new Version( 4, 9, 9 );
6464
}
6565
else
6666
{

0 commit comments

Comments
 (0)