Skip to content

Commit

Permalink
Merge pull request #28 from t-miyake/develop
Browse files Browse the repository at this point in the history
バージョン情報ファイルのURLを修正
  • Loading branch information
t-miyake committed May 21, 2019
2 parents 0d0dd21 + 4da15bf commit ed2fd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OutlookOkan/Models/CheckNewVersion.cs
Expand Up @@ -22,7 +22,7 @@ public bool IsCanDownloadNewVersion()
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

client.Encoding = System.Text.Encoding.UTF8;
var versionFile = client.DownloadString("https://github.com/t-miyake/OutlookOkan/blob/master/version");
var versionFile = client.DownloadString("https://raw.githubusercontent.com/t-miyake/OutlookOkan/master/version");
if (string.IsNullOrEmpty(versionFile)) return false;

var fetchedVersion = int.Parse(versionFile.Replace(".", ""));
Expand Down

0 comments on commit ed2fd7d

Please sign in to comment.