You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, thanks for your library, it do helped me save a lot of time.
Just found a little bug, when parse a ndefmessage buffer which incude an external type of android package like android.com:pkg with payload com.blabla, it will failed with chunk not support.
the reason is NdefMessage.swift line 201:
typeIndex += 1; changed to typeIndex += typeLength; is ok.
The text was updated successfully, but these errors were encountered:
Hi, thanks for your library, it do helped me save a lot of time.
Just found a little bug, when parse a ndefmessage buffer which incude an external type of android package like android.com:pkg with payload com.blabla, it will failed with chunk not support.
the reason is NdefMessage.swift line 201:
typeIndex += 1;
changed totypeIndex += typeLength;
is ok.The text was updated successfully, but these errors were encountered: