updated freeswitch doc + revert changes in drv

This commit is contained in:
adi
2023-01-11 17:54:31 +02:00
committed by Dan Christian Bogos
parent 4347ff061f
commit 2dc6b3454e
3 changed files with 17 additions and 4 deletions

View File

@@ -599,6 +599,12 @@ func (iDB *InternalDB) SetIndexesDrv(_ *context.Context, idxItmType, tntCtx stri
true, utils.NonTransactional)
continue
}
//to be the same as HMSET
if transactionID != utils.EmptyString {
if x, ok := iDB.db.Get(idxItmType, dbKey); ok && x != nil {
indx = utils.JoinStringSet(indx, x.(utils.StringSet))
}
}
iDB.db.Set(idxItmType, dbKey, indx, []string{tntCtx},
true, utils.NonTransactional)
}