Sadly it's not possible to post new stuff to this forum, so I have to use the comment-function to post my patch for GDataHelper::parseMedia() wich fixes an issue with GThumbnail.width/height not being filled with data.
Index: GDataHelper.as
===================================================================
--- GDataHelper.as (revision 45)
+++ GDataHelper.as (working copy)
@@ -267,8 +267,10 @@
for each (var item3:XML in xml.media::group.media::thumbnail) {
var thumbnail:GThumbnail = new GThumbnail()
Thank you for your comment. I will check this issue. I just didnt pay attention to the forum I thought nobody interested in it!How do you want to post that patch ? via forum ? I will require function to upload files.
Comments
Sadly it's not possible to post new stuff to this forum, so I have to use the comment-function to post my patch for GDataHelper::parseMedia() wich fixes an issue with GThumbnail.width/height not being filled with data.
Index: GDataHelper.as
===================================================================
--- GDataHelper.as (revision 45)
+++ GDataHelper.as (working copy)
@@ -267,8 +267,10 @@
for each (var item3:XML in xml.media::group.media::thumbnail) {
var thumbnail:GThumbnail = new GThumbnail()
- thumbnail.url = item3.@url;
-
+ thumbnail.url = item3.@url;
+ thumbnail.width = item3.@width;
+ thumbnail.height = item3.@height;
+
thumbnails.addItem(thumbnail);
}
mediaData.thumbnail = thumbnails;
Issus fixed and commited - http://code.google.com/p/picasa-flex-api/source/detail?r=56 .Thank you
Thank you for your comment. I will check this issue. I just didnt pay attention to the forum I thought nobody interested in it!How do you want to post that patch ? via forum ? I will require function to upload files.
Post new comment