mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 10:47:02 -07:00
Creating *.pdb files when building Greenshot, which we will package in a .ZIP so we can supply them when needed.
This commit is contained in:
parent
0d59072bc1
commit
6bf1ebf4f4
3 changed files with 60 additions and 16 deletions
|
@ -363,9 +363,8 @@ namespace GreenshotPlugin.Core {
|
|||
/// <param name="uri">Uri</param>
|
||||
/// <returns>DateTime</returns>
|
||||
public static DateTime GetLastModified(Uri uri) {
|
||||
HttpWebRequest webRequest;
|
||||
try {
|
||||
webRequest = (HttpWebRequest)CreateWebRequest(uri);
|
||||
HttpWebRequest webRequest = CreateWebRequest(uri);
|
||||
webRequest.Method = "HEAD";
|
||||
HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse();
|
||||
LOG.DebugFormat("RSS feed was updated at {0}", webResponse.LastModified);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue