akhil-chaurasia / tokboxapi

Automatically exported from code.google.com/p/tokboxapi
0 stars 0 forks source link

Java Api: Bug in TokBoxVideo.getFeed call #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The vmailid is never set when calling getFeed. The node is looked up from
the itemAttributes collection instead of the videomailAttributes:

 for (int j = 0; j < videomailAttributesLength; j++) {
    Node attr = itemAttributes.item(j);

instead of :

 for (int j = 0; j < videomailAttributesLength; j++) {
    Node attr = videomailAttributes.item(j);

Original issue reported on code.google.com by nickelsb...@gmail.com on 6 Apr 2010 at 8:24

GoogleCodeExporter commented 9 years ago
I will resolve this issue tonight, and then upload both a new zip SDK and 
upload the new code to the SVN

Original comment by melih.onvural@gmail.com on 6 Apr 2010 at 10:33

GoogleCodeExporter commented 9 years ago
Thanks!

I also noticed the same problem with the contentAttributes collection. If it 
helps at
all I fixed it and also added a method to get the vmail from the
getMessagesWithContent call that you mentioned. I have attached in case it 
saves you
time.

Cheers,
Nick

Original comment by nickelsb...@gmail.com on 6 Apr 2010 at 11:29

Attachments:

GoogleCodeExporter commented 9 years ago
Updated the code from user nickelsberry's commit

Original comment by melih.onvural@gmail.com on 21 Apr 2010 at 10:46