1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-06 14:34:05 +02:00

Remove unnecessary IsSystemSupported check in UpdateHandler

This commit is contained in:
chylex 2017-01-17 02:48:17 +01:00
parent ce005ae6c2
commit 4dd2e787d1

View File

@ -82,7 +82,7 @@ public bool AllowPreReleases{
public bool IsSystemSupported{
get{
return Environment.OSVersion.Version >= new Version("6.1"); // 6.1 NT version = Windows 7
return true; // Environment.OSVersion.Version >= new Version("6.1"); // 6.1 NT version = Windows 7
}
}