From e598ebf4cd95cb47e465ef9b6ebd37ca831f8e07 Mon Sep 17 00:00:00 2001 From: Aaron Manaloto Date: Fri, 11 Oct 2024 15:00:35 +0800 Subject: [PATCH] Remove AddonTags from the excluded fields --- app/services/diffed_content.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/services/diffed_content.rb b/app/services/diffed_content.rb index 9a46c6894..092a10c2e 100644 --- a/app/services/diffed_content.rb +++ b/app/services/diffed_content.rb @@ -1,5 +1,5 @@ class DiffedContent - EXCLUDED_FIELDS = %w(id plugin plugin_id AddonTags) + EXCLUDED_FIELDS = %w(id plugin plugin_id) attr_reader :source, :target