From 5b7b3b1dfd5ce7c275881098310667b09562ad27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Mon, 11 Nov 2024 12:27:53 +0100 Subject: New upstream version 0.32.10 --- plugins/shotwell-publishing/YouTubePublishing.vala | 4 ++-- plugins/shotwell-publishing/YoutubeUploader.vala | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'plugins/shotwell-publishing') diff --git a/plugins/shotwell-publishing/YouTubePublishing.vala b/plugins/shotwell-publishing/YouTubePublishing.vala index f0a9866..88218cc 100644 --- a/plugins/shotwell-publishing/YouTubePublishing.vala +++ b/plugins/shotwell-publishing/YouTubePublishing.vala @@ -330,9 +330,9 @@ internal class PublishingOptionsPane : Spit.Publishing.DialogPane, GLib.Object { private PrivacyDescription[] create_privacy_descriptions() { PrivacyDescription[] result = new PrivacyDescription[0]; - result += new PrivacyDescription(_("Public listed"), PrivacySetting.PUBLIC); - result += new PrivacyDescription(_("Public unlisted"), PrivacySetting.UNLISTED); + result += new PrivacyDescription(_("Public"), PrivacySetting.PUBLIC); result += new PrivacyDescription(_("Private"), PrivacySetting.PRIVATE); + result += new PrivacyDescription(_("unlisted"), PrivacySetting.UNLISTED); return result; } diff --git a/plugins/shotwell-publishing/YoutubeUploader.vala b/plugins/shotwell-publishing/YoutubeUploader.vala index 47c6051..eb3507f 100644 --- a/plugins/shotwell-publishing/YoutubeUploader.vala +++ b/plugins/shotwell-publishing/YoutubeUploader.vala @@ -18,7 +18,10 @@ internal class Publishing.YouTube.UploadTransaction : Publishing.RESTSupport.Goo public override async void execute_async() throws Spit.Publishing.PublishingError { // Collect parameters - var slug = publishable.get_param_string(Spit.Publishing.Publishable.PARAM_STRING_BASENAME); + var slug = publishable.get_param_string(Spit.Publishing.Publishable.PARAM_STRING_COMMENT); + if (slug == null || slug == "") { + slug = publishable.get_param_string(Spit.Publishing.Publishable.PARAM_STRING_BASENAME); + } // Set title to publishing name, but if that's empty default to filename. string title = publishable.get_publishing_name(); if (title == "") { -- cgit v1.2.3