Ignore:
Timestamp:
Sep 6, 2009, 1:32:38 AM (15 years ago)
Author:
bayral
Message:

add tag list to image in image list retruned by pwg.tags.getImage

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Service/PwgImagesService.cs

    r3827 r3828  
    8888                }
    8989
     90                returnValue.Tags = new List<PwgTag>();
     91                foreach (PwgTagProxyResponse tagResp in  response.Tags)
     92                {
     93                    PwgTag aTag = PwgTagsService.ConvertProxyResponseToDTO(tagResp);
     94                    returnValue.Tags.Add(aTag);
     95                }
     96
    9097            }
    9198            catch (Exception ex)
Note: See TracChangeset for help on using the changeset viewer.