Closed drissslim closed 1 year ago
Hmm, that's an errror in the error-message print function. :-( Will be fixed in the next release.
Meanwhile, you may fix it in your installed plugin, so you can see avoid the exception.
In file PSPhotosAPI.lua, change line 852 from:
return string.format("ErrorCode: %d", errorCode)
to :
return string.format("ErrorCode: %d", ifnil(errorCode, 100))
This will then return an 'Unknown error' message so you can chase the real problem
Hi, I'm getting other errors related to nil value also at line 1034 in the same file. Please find in attachment the error trace. Thank you.
Wow, two bugs in one day: not bad!
In PSPhotosAPI.lua, change line 1076 from:
elseif not Photos_deleteFolder (currentFolderPath) then
to:
elseif not Photos_deleteFolder (h, currentFolderPath) then
Will be fixed in the next release.
Thanks for reporting!
Hi, I'm using the last version of plugin and I'm getting this error in popup window when try to publish my photos
An internal error has occured: [string "PSPhotosAPI.lua"]: 852: bad argument #1 to 'format' (number expected, got nil)
Any idea how to fix that? Thank you.