diff --git a/app/models/concerns/heartbeatable.rb b/app/models/concerns/heartbeatable.rb index 4063817..2fc051a 100644 --- a/app/models/concerns/heartbeatable.rb +++ b/app/models/concerns/heartbeatable.rb @@ -240,7 +240,7 @@ module Heartbeatable model_class = scope.model base_scope = model_class.all.with_valid_timestamps - excluded_categories = [ "browsing", "ai coding", "meeting", "communicating" ] + excluded_categories = [ "browsing", "meeting", "communicating" ] base_scope = base_scope.where.not("LOWER(category) IN (?)", excluded_categories) if scope.where_values_hash["user_id"] diff --git a/lib/test_wakatime_service.rb b/lib/test_wakatime_service.rb index 9295e6b..a81d9eb 100644 --- a/lib/test_wakatime_service.rb +++ b/lib/test_wakatime_service.rb @@ -8,7 +8,7 @@ class TestWakatimeService @scope = @scope.with_valid_timestamps # yeah macha we're removing unwated categories - @scope = @scope.where.not("LOWER(category) IN (?)", [ "browsing", "ai coding", "meeting", "communicating" ]) + @scope = @scope.where.not("LOWER(category) IN (?)", [ "browsing", "meeting", "communicating" ]) @user = user @boundary_aware = boundary_aware