Skip to content

Commit

Permalink
Fix wrong UA string
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Gut committed Nov 20, 2018
1 parent f3cb77a commit 807a5c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Decrypter/DecryptModules/Decrypter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public static async Task<bool> Hash(string Hash)
private static HttpWebRequest GetRequest(string URL)
{
var Req = WebRequest.CreateHttp(URL);
Req.UserAgent = "AyrA-Decryptor/" + Assembly.GetExecutingAssembly().GetName().Version.ToString() + " +https://github.com/AyrA/Decryptor";
Req.UserAgent = "AyrA-Decryptor/" + Assembly.GetExecutingAssembly().GetName().Version.ToString() + " +https://github.com/AyrA/Decrypter";
return Req;
}
}
Expand Down
4 changes: 2 additions & 2 deletions Decrypter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,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.0.0.0")]
[assembly: AssemblyFileVersion("4.0.0.0")]
[assembly: AssemblyVersion("4.1.0.0")]
[assembly: AssemblyFileVersion("4.1.0.0")]

0 comments on commit 807a5c5

Please sign in to comment.