-
Notifications
You must be signed in to change notification settings - Fork 49
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
Arguments checking bug #21
Comments
We will fix the issue soon |
So there are two bugs in cordova-plugin-mqtt.js file.
(args.retain===undefined) ? (args.retain=false) : (args.retain=true);
args.willTopicConfig.retain||true This will not be affected for the value undefined as it already handled previously. I have created a PR for this retain issue, please approve it. |
@snr-lab Thank you for the PR. Just wanted to know that have you verified completely ?? |
Thank you very much for accepting my PR. I got one bug with my fix when will message is not configured. I have fixed the issue and raised the PR. Please approve it. |
Can we mark this bug resolved as the issue is fixed? |
We need to see for any more errors. Till then let it be open
…Sent from my iPhone
On 27-Jul-2017, at 10:32 AM, Rahul Kundu ***@***.***> wrote:
Can we mark this bug as resolved as the issue is fixed?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or mute the thread.
|
I found one more bug. When we set keep alive 0 it automatically get changed to 60000. According to the documentation 0 is also a valid input. It actually disables keep alive feature. |
Hello It seems the issue is still there |
I can also confirm that the bug is still there... |
Can you try this |
If you pass
retain = false
when publish, thenretain
istrue
.Disabling
retain
flag only ifretain
option isundefined
The text was updated successfully, but these errors were encountered: