This commit is contained in:
Unknown 2014-05-07 18:57:00 -04:00
Родитель 31fd45ba02
Коммит 7d89e765ab
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -785,7 +785,7 @@ func NotifyWatchers(act *Action) error {
// IsWatching checks if user has watched given repository.
func IsWatching(uid, rid int64) bool {
has, _ := orm.Get(&Watch{0, rid, uid})
has, _ := orm.Get(&Watch{0, uid, rid})
return has
}