Unifier Wiki
  • Main Page
  • 👷Setup (existing instance)
    • Getting started
      • Discord
      • Revolt & Others
  • 💾Setup (self-hosted)
    • Getting Started
      • Unifier
      • Unifier (older versions)
      • Unifier Micro
      • Unifier Micro (older versions)
    • Upgrading Unifier
      • Manual rollback
    • Modding Unifier: things to note
  • 📚Guides
    • Unifier System
      • Configuring the bootloader
      • Switching Python versions
      • Managing your secrets
      • Data backups
    • Bridge
      • Global emojis
      • Moderation tools
      • Filters
      • Under Attack Mode
  • 🧩Modifiers
    • Introduction to Modifiers
    • Writing a Modifier
      • Custom Filters
      • Service: Content Processing
      • Service: Emojis
  • 🤔Compare
    • Unifier vs. Unifier Micro
    • Unifier vs. Conventional
    • Platform features
    • Benchmarks
  • 🔗Socials
    • Blog
    • Discord
    • Revolt
  • 📜Legal & Policies
    • Terms of Service
    • Privacy Policy
    • Community guidelines
Powered by GitBook
On this page
  • Functions
  • await process
  • Compatibility
  1. Modifiers
  2. Writing a Modifier

Service: Content Processing

The Content Processing service allows your Modifier to modify messages before it is bridged to other servers and platforms.

To enable Content Processing,

Functions

await process

Function called by Unifier Bridge to stylize a message using the Plugin.

Provided arguments

  • message: Message object for the content to stylize. This may be nextcord.Message, revolt.Message or guilded.Message.

Expected return

A nextcord.Message, revolt.Message or guilded.Message object. The object type must be identical to that of the provided object.

Compatibility

Modifiers offering Content Protection service should have a minimum Unifier release requirement of 49 or above.

PreviousCustom FiltersNextService: Emojis

Last updated 3 months ago

🧩