replace html entities with emojis to prevent rendering issues

This commit is contained in:
Sascha Voth 2024-12-20 17:00:06 +01:00
parent 83a555e334
commit 06c6a04c97

View File

@ -147,7 +147,7 @@ func (provider *AlertProvider) buildRequestBody(cfg *Config, ep *endpoint.Endpoi
}
// Configure default title if it's not provided
title := "⛑ Gatus"
title := "⛑️ Gatus"
if cfg.Title != "" {
title = cfg.Title
}
@ -157,9 +157,9 @@ func (provider *AlertProvider) buildRequestBody(cfg *Config, ep *endpoint.Endpoi
for _, conditionResult := range result.ConditionResults {
var key string
if conditionResult.Success {
key = "✅"
key = ""
} else {
key = "❌"
key = ""
}
facts = append(facts, Fact{
Title: key,