mirror of
https://github.com/moparisthebest/PhoneGap-SQLitePlugin-Android
synced 2024-11-21 08:25:01 -05:00
fixed bug with null params
This commit is contained in:
parent
d8618055c0
commit
90b6902852
@ -146,7 +146,10 @@
|
||||
else
|
||||
new_query['query_id'] = "";
|
||||
new_query['query'] = query;
|
||||
new_query['params'] = params;
|
||||
if(params)
|
||||
new_query['params'] = params;
|
||||
else
|
||||
new_query['params'] = [];
|
||||
new_query['callback'] = callback;
|
||||
new_query['err_callback'] = err_callback;
|
||||
if(!transaction_queue[trans_id])
|
||||
|
Loading…
Reference in New Issue
Block a user