Compare commits

..

5 Commits
8.4 ... 8.4.1

Author SHA1 Message Date
Mario
c2cfe481df version 8.4.1 2023-05-20 09:28:32 +00:00
Mario
3a56fb6ec6 Merge branch 'dev' 2023-05-20 09:27:45 +00:00
Mario
61950decb3 changelog 2023-05-20 09:27:31 +00:00
Mario
1a614ea023 instead of setting the value to 0 just continue so that already existing values will not be overwritten 2023-05-19 13:17:45 +00:00
Mario
a83b6a5e63 instead of setting the value to 0 just continue so that already existing values will not be overwritten 2023-05-19 13:16:53 +00:00
3 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
Hubzilla 8.4.1 (2023-05-20)
- Fix issue where accepting AP contacts would reset send stream permission
- Fix link to release page in upgrade info addon
Hubzilla 8.4 (2023-05-17)
- Slightly rewrite Activity::store() to save a query
- Use act->objprop() in decode_note() to get activity values

View File

@@ -1368,7 +1368,7 @@ class Activity {
foreach ($their_perms as $k => $v) {
if(in_array($k, ['send_stream', 'post_wall'])) {
$v = 0; // Those will be set once we accept their follow request
continue; // Those will be set once we accept their follow request
}
set_abconfig($channel['channel_id'], $contact['abook_xchan'], 'their_perms', $k, $v);
}

View File

@@ -60,7 +60,7 @@ require_once('include/bbcode.php');
require_once('include/items.php');
define('PLATFORM_NAME', 'hubzilla');
define('STD_VERSION', '8.4');
define('STD_VERSION', '8.4.1');
define('ZOT_REVISION', '6.0');
define('DB_UPDATE_VERSION', 1258);