From b57c8088c3dad237b04bb792c6dade9c470ce9fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Thu, 15 Aug 2019 09:42:33 +0200 Subject: New upstream version 0.30.5 --- plugins/shotwell-publishing/PhotosPublisher.vala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'plugins/shotwell-publishing/PhotosPublisher.vala') diff --git a/plugins/shotwell-publishing/PhotosPublisher.vala b/plugins/shotwell-publishing/PhotosPublisher.vala index d878158..ce5e505 100644 --- a/plugins/shotwell-publishing/PhotosPublisher.vala +++ b/plugins/shotwell-publishing/PhotosPublisher.vala @@ -203,9 +203,10 @@ private class AlbumDirectoryTransaction : Publishing.RESTSupport.GooglePublisher var response_albums = object.get_member ("albums").get_array(); response_albums.foreach_element( (a, b, element) => { var album = element.get_object(); + var title = album.get_member("title"); var is_writable = album.get_member("isWriteable"); - if (is_writable != null && is_writable.get_boolean()) - albums += new Album(album.get_string_member("title"), album.get_string_member("id")); + if (title != null && is_writable != null && is_writable.get_boolean()) + albums += new Album(title.get_string(), album.get_string_member("id")); }); if (pagination_token_node != null) { -- cgit v1.2.3