Page MenuHomePhorge

D25222.1737858786.diff
No OneTemporary

D25222.1737858786.diff

diff --git a/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php b/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
--- a/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
+++ b/src/applications/maniphest/xaction/ManiphestTaskPointsTransaction.php
@@ -98,7 +98,11 @@
}
private function getValueForPoints($value) {
- if (!strlen($value)) {
+ // The Point can be various types also thanks to Conduit API
+ // like integers, floats, null, and strings of course.
+ // Everything meaningful must be printable as a string.
+ $is_empty = phutil_string_cast($value) === '';
+ if ($is_empty) {
$value = null;
}
if ($value !== null) {

File Metadata

Mime Type
text/plain
Expires
Sun, Jan 26, 02:33 (6 d, 20 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1147283
Default Alt Text
D25222.1737858786.diff (728 B)

Event Timeline