aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Zotlabs/Lib/Activity.php2
-rw-r--r--boot.php2
-rw-r--r--view/css/conversation.css2
-rw-r--r--view/js/main.js2
4 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index 03b63a17b..ebf866a3b 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -2277,7 +2277,7 @@ class Activity {
$s['edited'] = $s['created'];
$s['title'] = (($response_activity) ? EMPTY_STR : html2plain($content['name']));
- $s['summary'] = html2plain($content['summary']);
+ $s['summary'] = (($content['summary'] !== $content['content']) ? html2plain($content['summary']) : '');
$s['body'] = ((self::bb_content($content, 'bbcode') && (!$response_activity)) ? self::bb_content($content, 'bbcode') : self::bb_content($content, 'content'));
// peertube quirks
diff --git a/boot.php b/boot.php
index 3f494f600..50b21bd4c 100644
--- a/boot.php
+++ b/boot.php
@@ -70,7 +70,7 @@ require_once('include/security.php');
define('PLATFORM_NAME', 'hubzilla');
-define('STD_VERSION', '10.3.64');
+define('STD_VERSION', '10.3.65');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1263);
diff --git a/view/css/conversation.css b/view/css/conversation.css
index 80c365bed..059b545c4 100644
--- a/view/css/conversation.css
+++ b/view/css/conversation.css
@@ -280,7 +280,7 @@ a.wall-item-name-link {
content: '';
position: absolute;
pointer-events: none;
- box-shadow: 0 0 0 1px var(--hz-item-highlight);
+ box-shadow: 0 0 0 1px var(--bs-border-color);
border-radius: var(--bs-border-radius);
width: 100%;
top: 0;
diff --git a/view/js/main.js b/view/js/main.js
index 39f01190e..609762da7 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -1729,7 +1729,7 @@ function stringToHslColor(str) {
let stringUniqueHash = [...str].reduce((acc, char) => {
return char.charCodeAt(0) + ((acc << 5) - acc);
}, 0);
- return `hsl(${stringUniqueHash % 360}, 30%, 50%)`;
+ return `hsl(${stringUniqueHash % 360}, 65%, 65%)`;
}
function dolike(ident, verb) {