diff options
Diffstat (limited to 'models/repo_watch.go')
-rw-r--r-- | models/repo_watch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/repo_watch.go b/models/repo_watch.go index 0e4645f26f..656696b34f 100644 --- a/models/repo_watch.go +++ b/models/repo_watch.go @@ -312,6 +312,6 @@ func watchIfAuto(e Engine, userID, repoID int64, isWrite bool) error { } // WatchIfAuto subscribes to repo if AutoWatchOnChanges is set -func WatchIfAuto(userID int64, repoID int64, isWrite bool) error { +func WatchIfAuto(userID, repoID int64, isWrite bool) error { return watchIfAuto(x, userID, repoID, isWrite) } |