mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-12 02:26:26 +05:00
quick fix for compile error
This commit is contained in:
@@ -44,7 +44,7 @@ type ActionTrigger struct {
|
||||
|
||||
func (at *ActionTrigger) Execute(ub *Account) (err error) {
|
||||
if ub.Disabled {
|
||||
return Logger.Err(fmt.Errorf("User %s is disabled and there are triggers in action!", ub.Id))
|
||||
return fmt.Errorf("User %s is disabled and there are triggers in action!", ub.Id)
|
||||
}
|
||||
// does NOT need to Lock() because it is triggered from a method that took the Lock
|
||||
var aac Actions
|
||||
|
||||
Reference in New Issue
Block a user