-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot access and list subfolders #11
Comments
great; let me know if you get it working and we can push it onto master. |
Got it working with that method, but for my needs I did not need it in pure C so it now contains Objective C and uses the iOS library so may no longer suit your needs. I also found the reason behind the i==0 code (// TODO: No idea why a padding is needed here.... //if (i==0) data_offset++;) that was commented that the reason is unknown for the padding. The padding is actually before the data block, since you are doing it on i==0 you pad the first block. At least that is what I found with the unicode response, I no longer have that conditional padding rather I pad before the data block. |
Hey @Quarky, could you provide your fix in some way? I am struggling with the same problems and i also want to use this framework for iOS only. Thx in advance! |
Sure I will post it here, sorry for the delayed response, I have been busy. I will do it this weekend if you remind me by adding a comment here. I may remember myself, but I planned on doing this last weekend and I forgot. |
I noticed that the contents of my folder will not be displayed if the folder name ends with a number. For example, "ABC1" will not load, but if I rename the folder to "ABC", it works fine. @Quarky, could your fix solve my problem? Thanks for any advice you have. |
I don't know, but I keep forgetting to post the fix. I don't work on Sundays so I may have some time then if I happen to remember. |
:o could you please post it? I'm stuck with the same issue. |
I fixed half of it by using unicode instead of ASCII and setting the flag to unicode in _tango_TRANS2_FIND_FIRST2 and now the request goes through without error when watching it on the sniffer. However since the response is unicode I need to modify the response parsing.
The text was updated successfully, but these errors were encountered: