Ignore:
Timestamp:
Mar 8, 2012, 11:19:12 PM (12 years ago)
Author:
bayral
Message:

new project for windows live publish plugin
Well advance single uploader

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoUpload/Service/UploadToPiwigo.cs

    r12336 r13520  
    5555            FileInfo fi = new FileInfo(aImg.LocalFile);
    5656
    57             List<PwgTag> lstTag = new List<PwgTag>(aImg.LstTags);
     57            List<PwgTag> lstTag = new List<PwgTag>();
     58            if (aImg.LstTags != null)
     59            {
     60                lstTag.AddRange(aImg.LstTags);
     61            }
    5862
    5963            PwgServiceProvider.Instance.PwgImagesService.addImageByMultiPartForm(fi, null, aImg.UpperCatId, aImg.Name, aImg.Author, aImg.AuthorComment, aImg.ConfidentialLevel, lstTag);
Note: See TracChangeset for help on using the changeset viewer.