Merge pull request #164 from martinwoodward/enable-blogger-labels

Enable creation of blogger labels
This commit is contained in:
Will Duff 2015-12-17 09:08:29 -08:00
commit f93ff6e285
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ namespace OpenLiveWriter.BlogClient.Clients
clientOptions.SupportsSlug = false;
clientOptions.SupportsFileUpload = true;
clientOptions.SupportsKeywords = true;
clientOptions.SupportsGetKeywords = false;
clientOptions.SupportsGetKeywords = true;
clientOptions.SupportsPages = true;
clientOptions.SupportsExtendedEntries = true;
_clientOptions = clientOptions;
@ -301,7 +301,7 @@ namespace OpenLiveWriter.BlogClient.Clients
public BlogPostKeyword[] GetKeywords(string blogId)
{
Trace.Fail("Google Blogger does not support GetKeywords!");
// Google Blogger does not support get labels
return new BlogPostKeyword[] { };
}