diff options
| author | Lakelezz <[email protected]> | 2018-08-12 21:43:59 +0200 |
|---|---|---|
| committer | zeyla <[email protected]> | 2018-08-12 12:43:59 -0700 |
| commit | 71edc3a11ac450728bca19ca7cab7c84079d59f0 (patch) | |
| tree | bc6197f96ba9118ffa0b104c8434585d38bb6032 /src/model/channel/reaction.rs | |
| parent | Revert "Send silence frames upon connection (Fix #301)" (diff) | |
| download | serenity-71edc3a11ac450728bca19ca7cab7c84079d59f0.tar.xz serenity-71edc3a11ac450728bca19ca7cab7c84079d59f0.zip | |
Use `to_`- and `as_`-methods instead of `get` and `find` on Id newtypes
Diffstat (limited to 'src/model/channel/reaction.rs')
| -rw-r--r-- | src/model/channel/reaction.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/channel/reaction.rs b/src/model/channel/reaction.rs index 94b3c32..c34eff7 100644 --- a/src/model/channel/reaction.rs +++ b/src/model/channel/reaction.rs @@ -51,7 +51,7 @@ impl Reaction { /// [Read Message History]: ../permissions/struct.Permissions.html#associatedconstant.READ_MESSAGE_HISTORY #[inline] pub fn channel(&self) -> Result<Channel> { - self.channel_id.get() + self.channel_id.to_channel() } /// Deletes the reaction, but only if the current user is the user who made @@ -123,7 +123,7 @@ impl Reaction { /// the REST API for the user. #[inline] pub fn user(&self) -> Result<User> { - self.user_id.get() + self.user_id.to_user() } /// Retrieves the list of [`User`]s who have reacted to a [`Message`] with a |