Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/marvin/handlers/print_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def on_actor_message_delta(self, event: ActorMessageDeltaEvent):
# Create a stable ID from actor ID and message index
actor_id = str(event.actor.id)
# Use the timestamp as part of the stable ID to handle multiple messages from same actor
msg_time = event.timestamp.isoformat()
msg_time = event.timestamp.isoformat(timespec='hour')
Comment thread
zzstoatzz marked this conversation as resolved.
Outdated
event_id = f"{actor_id}_{msg_time}"

# Create or update the panel
Expand Down