fix: no longer crash on clip creation in "special" channels #2528
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Pull request checklist:
CHANGELOG.md
was updated, if applicableDescription
Fixes #2527.
Clip creation via the
Alt+X
shortcut failed for the/mentions
and/whispers
channel. This happened becauseChannel::isTwitchChannel
returnstrue
for these channels. (Internally, the types areChannel::Type::TwitchMentions
andChannel::Type::TwitchWhispers
in anticipation of supporting more platforms in the future.)This lead to a false assumption in the clip creation logic: Not all channels that display "Twitch content" are able to create clips.
The employed fix checks the channel type in more detail. Clip creation is only allowed if the channel is
Channel::Type::Twitch
orChannel::Type::TwitchWatching
. This makes sure that there always is an associated channel to generate a clip from.Additional note: Clip creation did not crash when initiated via the
/clip
command. This is due to the fact thatCommandController::execCommand
makes additional checks regarding the channel context before executing the command.