مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
fix: truncate output and details in deliveries to 250 characters
closes #2831
هذا الالتزام موجود في:
@@ -7,7 +7,14 @@ module Postal
|
|||||||
def self.create(message, attributes = {})
|
def self.create(message, attributes = {})
|
||||||
attributes = message.database.stringify_keys(attributes)
|
attributes = message.database.stringify_keys(attributes)
|
||||||
attributes = attributes.merge("message_id" => message.id, "timestamp" => Time.now.to_f)
|
attributes = attributes.merge("message_id" => message.id, "timestamp" => Time.now.to_f)
|
||||||
|
|
||||||
|
# Ensure that output and details don't overflow their columns. We don't need
|
||||||
|
# these values to store more than 250 characters.
|
||||||
|
attributes["output"] = attributes["output"][0, 250] if attributes["output"]
|
||||||
|
attributes["details"] = attributes["details"][0, 250] if attributes["details"]
|
||||||
|
|
||||||
id = message.database.insert("deliveries", attributes)
|
id = message.database.insert("deliveries", attributes)
|
||||||
|
|
||||||
delivery = Delivery.new(message, attributes.merge("id" => id))
|
delivery = Delivery.new(message, attributes.merge("id" => id))
|
||||||
delivery.update_statistics
|
delivery.update_statistics
|
||||||
delivery.send_webhooks
|
delivery.send_webhooks
|
||||||
|
|||||||
المرجع في مشكلة جديدة
حظر مستخدم