We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96eb8b5 commit c7878b6Copy full SHA for c7878b6
lib/RenderApp/Controller/Render.pm
@@ -35,7 +35,7 @@ sub parseRequest {
35
# only supply key-values that are not already provided
36
# e.g. numCorrect/numIncorrect or restarting an interrupted session
37
foreach my $key (keys %$claims) {
38
- $params{$key} ||= $claims->{$key};
+ $params{$key} //= $claims->{$key};
39
}
40
# @params{ keys %$claims } = values %$claims;
41
0 commit comments