Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Fix MessageActionRequest Issue #149

Merged
merged 2 commits into from
Feb 28, 2019
Merged
Changes from all commits
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 SKServer/Sources/Model/MessageActionRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public struct MessageActionRequest {
callbackID = response?["callback_id"] as? String
team = Team(team: response?["team"] as? [String: Any])
channel = Channel(channel: response?["channel"] as? [String: Any])
user = User(user: response?["channel"] as? [String: Any])
user = User(user: response?["user"] as? [String: Any])
actionTS = response?["action_ts"] as? String
messageTS = response?["message_ts"] as? String
attachmentID = response?["attachment_id"] as? String
Expand Down