Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15381888
D12615.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D12615.diff
View Options
diff --git a/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php b/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
--- a/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
+++ b/src/applications/calendar/query/PhabricatorCalendarEventInviteeQuery.php
@@ -59,28 +59,28 @@
$this->ids);
}
- if ($this->eventPHIDs) {
+ if ($this->eventPHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'eventPHID IN (%Ls)',
$this->eventPHIDs);
}
- if ($this->inviteePHIDs) {
+ if ($this->inviteePHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'inviteePHID IN (%Ls)',
$this->inviteePHIDs);
}
- if ($this->inviterPHIDs) {
+ if ($this->inviterPHIDs !== null) {
$where[] = qsprintf(
$conn_r,
'inviterPHID IN (%Ls)',
$this->inviterPHIDs);
}
- if ($this->statuses) {
+ if ($this->statuses !== null) {
$where[] = qsprintf(
$conn_r,
'status = %d',
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 15, 9:47 AM (1 w, 6 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7689310
Default Alt Text
D12615.diff (1 KB)
Attached To
Mode
D12615: Fixing strictly null checks in CalendarInviteeQuery
Attached
Detach File
Event Timeline
Log In to Comment