Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15472248
D17038.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
938 B
Referenced Files
None
Subscribers
None
D17038.diff
View Options
diff --git a/src/applications/differential/conduit/DifferentialConduitAPIMethod.php b/src/applications/differential/conduit/DifferentialConduitAPIMethod.php
--- a/src/applications/differential/conduit/DifferentialConduitAPIMethod.php
+++ b/src/applications/differential/conduit/DifferentialConduitAPIMethod.php
@@ -124,8 +124,15 @@
$message = $request->getValue('message');
if (strlen($message)) {
// This is a little awkward, and should maybe move inside the transaction
- // editor. It largely exists for legacy reasons.
+ // editor. It largely exists for legacy reasons. See some discussion in
+ // T7899.
$first_line = head(phutil_split_lines($message, false));
+
+ $first_line = id(new PhutilUTF8StringTruncator())
+ ->setMaximumBytes(250)
+ ->setMaximumGlyphs(80)
+ ->truncateString($first_line);
+
$diff->setDescription($first_line);
$diff->save();
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 12:03 PM (43 m, 59 s ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7553352
Default Alt Text
D17038.diff (938 B)
Attached To
Mode
D17038: Truncate the one-line diff update summary when updating a revision to 250 bytes
Attached
Detach File
Event Timeline
Log In to Comment