summary refs log tree commit diff
path: root/masto-hide-mutstd-variants.rb
diff options
context:
space:
mode:
Diffstat (limited to 'masto-hide-mutstd-variants.rb')
-rw-r--r--masto-hide-mutstd-variants.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/masto-hide-mutstd-variants.rb b/masto-hide-mutstd-variants.rb
deleted file mode 100644
index fdbdba5..0000000
--- a/masto-hide-mutstd-variants.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-# original source: https://monsterware.dev/multiple_creatures/junk-in-the-trunk/commit/07143558bb296e02b9e8aaff6488ad08688f1c26
-
-CustomEmoji.local.each do |e|
-  # hide the mutstd variants
-  if e.shortcode =~ /^ms_/ and e.shortcode =~ /_\w\w?\d+$/ then
-    e.visible_in_picker = false
-    e.save!
-  end
-end