Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable25] fix(caldav): harden null handling of iMip scheduling method #39591

Merged

Conversation

kesselb
Copy link
Contributor

@kesselb kesselb commented Jul 27, 2023

Summary

Manual backport of #36935

TODO

  • CI
  • Testing

Checklist

@@ -177,7 +177,7 @@
$iTipMessage->scheduleStatus = '5.0; EMail delivery failed';
return;
}
$recipientName = $iTipMessage->recipientName ?: null;
$recipientName = $iTipMessage->recipientName ? (string)$iTipMessage->recipientName : null;

Check notice

Code scanning / Psalm

RedundantCastGivenDocblockType Note

Redundant cast to string given docblock-provided type
@st3iny st3iny added 4. to release Ready to be released and/or waiting for tests to finish and removed 3. to review Waiting for reviews labels Jul 28, 2023
@st3iny
Copy link
Member

st3iny commented Jul 28, 2023

Test failures seem unrelated (acceptance-users).

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
@kesselb kesselb force-pushed the backport/stable25/fix/noid/imip-plugin-null-hardening branch from 9a54b32 to d66cf1e Compare July 28, 2023 19:53
@blizzz blizzz mentioned this pull request Aug 2, 2023
@blizzz blizzz changed the title fix(caldav): harden null handling of iMip scheduling method [stable25] fix(caldav): harden null handling of iMip scheduling method Aug 2, 2023
@blizzz blizzz merged commit b347e4b into stable25 Aug 2, 2023
29 checks passed
@blizzz blizzz deleted the backport/stable25/fix/noid/imip-plugin-null-hardening branch August 2, 2023 19:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
4. to release Ready to be released and/or waiting for tests to finish bug
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants