summaryrefslogtreecommitdiff
path: root/app/models/event.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/event.rb')
-rw-r--r--app/models/event.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/event.rb b/app/models/event.rb
index 166c3f1b4b1..86a14044bc2 100644
--- a/app/models/event.rb
+++ b/app/models/event.rb
@@ -395,6 +395,6 @@ class Event < ActiveRecord::Base
# Note the call to .available? is due to earlier migrations
# that would otherwise conflict with the call to .track
# (because the table does not exist yet).
- UserInteractedProjects.track(self) if UserInteractedProjects.available?
+ UserInteractedProject.track(self) if UserInteractedProject.available?
end
end