Compare commits

..

No commits in common. "3a5b5c216ddc3c719c095bbf7bf40d80e344b391" and "0edf41c792c1ac0fa33e5026067ec00b5c6c4439" have entirely different histories.

3 changed files with 6 additions and 8 deletions

View file

@ -18,12 +18,10 @@ When creating, modifying, or removing plugins:
## Testing ## Testing
**CRITICAL**: After making ANY changes to code files, you MUST run these commands in order: After every session that contains changes to files:
1. **Format code**: `make format` - Format all code according to project standards 1. Check files are properly formatted running `make format`
2. **Lint code**: `make lint` - Check code style and quality (must show "0 issues") 2. Check code style and linting: Run `make lint`
3. **Run tests**: `make test` - Run all tests to ensure functionality works 3. Test the plugin functionality: Run `make test`
4. Verify documentation accuracy 4. Verify documentation accuracy
5. Ensure all examples work as described 5. Ensure all examples work as described
**These commands are MANDATORY after every code change, no exceptions.**

View file

@ -236,7 +236,7 @@ func (t *TelegramPlatform) SendMessage(msg *model.Message) error {
"chat_id": chatID, "chat_id": chatID,
"text": msg.Text, "text": msg.Text,
} }
// Set parse_mode based on plugin preference or default to Markdown // Set parse_mode based on plugin preference or default to Markdown
if msg.Raw != nil && msg.Raw["parse_mode"] != nil { if msg.Raw != nil && msg.Raw["parse_mode"] != nil {
// Plugin explicitly set parse_mode // Plugin explicitly set parse_mode

View file

@ -117,4 +117,4 @@ func TestTwitterExpander_OnMessage(t *testing.T) {
} }
}) })
} }
} }