mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
Fixed issue where getting current-position returned update_required
This commit is contained in:
@@ -406,9 +406,8 @@ module.exports = function() {
|
||||
}
|
||||
}
|
||||
|
||||
if(coll == "" || coll == undefined || coll == null ||
|
||||
!obj.hasOwnProperty("channel") || typeof(obj.channel) != "string" ||
|
||||
obj.hasOwnProperty("pass") || typeof(obj.pass) != "string") {
|
||||
if(!obj.hasOwnProperty("channel") || typeof(obj.channel) != "string" ||
|
||||
!obj.hasOwnProperty("pass") || typeof(obj.pass) != "string") {
|
||||
var result = {
|
||||
channel: {
|
||||
expected: "string",
|
||||
|
||||
Reference in New Issue
Block a user