Skip to content

Commit

Permalink
Revert type checking simplification
Browse files Browse the repository at this point in the history
Pattern matching failed under the simplified version.
  • Loading branch information
noah-schechter authored Dec 30, 2024
1 parent df7a9aa commit 75a84a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/lib/platform/updates.ex
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ defmodule Platform.Updates do
@doc """
Helper API function that takes attribute change information and uses it to create an Update changeset. Requires 'explanation' to be in attrs.
"""
def change_from_media_creation(%Media{} = media, %_{} = user_or_token) when user_or_token in [%User{}, %APIToken{}] do
def change_from_media_creation(%Media{} = media, %_{} = user_or_token) when is_struct(user_or_token, User) or is_struct(user_or_token, APIToken) do
change_update(
%Update{},
media,
Expand Down

0 comments on commit 75a84a3

Please sign in to comment.