Michael
d2da2492b7
old boot.php functions replaced in src/module
2022-10-19 08:53:45 -04:00
Hypolite Petovan
058abc0336
Simplify boolean statements in Content\Conversation
2022-10-19 08:05:31 -04:00
Michael
ee1acba9eb
old boot.php functions replaced in /src
2022-10-19 07:56:25 -04:00
Michael
11944dda32
old boot.php functions replaced in various places
2022-10-19 07:44:08 -04:00
Philipp Holzer
692566d93b
Fix ERROR IHandleSessions
2022-10-19 08:07:12 +02:00
Tobias Diekershoff
d8fe8b1e8b
Merge pull request #12029 from annando/warning
...
Suppress warning on load check
2022-10-19 07:51:24 +02:00
Michael
196dda9487
Suppress warning on load check
2022-10-19 04:49:57 +00:00
Philipp Holzer
4a2f67aa9a
Move Core\Session::clear() to DI::session()->clear()
2022-10-18 21:13:58 +02:00
Philipp Holzer
a2eb0c7378
Move Core\Session::remove() to DI::session()->remove()
2022-10-18 21:13:28 +02:00
Philipp Holzer
315ed3ed22
Remove unused Core\Session::setMultiple()
2022-10-18 21:12:48 +02:00
Philipp Holzer
3a8bcb3fbf
Move Core\Session::set() to DI::session()->set()
2022-10-18 21:12:23 +02:00
Philipp Holzer
dfb5792773
Remove unused Core\Session::pop() method
2022-10-18 21:11:19 +02:00
Philipp Holzer
fb2b2f5c58
Remove unused Core\Session::create() method
2022-10-18 21:11:00 +02:00
Philipp Holzer
7ac86e49d1
Move Core\Session::get() to DI::session()->get()
2022-10-18 21:10:37 +02:00
Michael
ae82737445
Fix errors introduced by PR #11997
2022-10-18 18:32:20 +00:00
Roland Häder
c36da392f8
Changed:
...
- re-added `null` again https://github.com/friendica/friendica/pull/11900#discussion_r979248182
- removed null coalescing operator
2022-10-18 18:21:45 +02:00
Roland Häder
2773ac9909
Changed according feedback:
...
- $posted_date should not allow NULL, instead use `?? ''` instead
- this happened in e.g. 2FA app-specific password listing
2022-10-18 17:47:15 +02:00
Roland Häder
66b9cace9f
Changed:
...
- first parameter can be null
2022-10-18 17:47:15 +02:00
Roland Häder
26e0469de7
Merge branch 'develop' into rewrite/gravity-constants
2022-10-18 16:34:40 +02:00
Michael
6f68679375
The EOL constant is removed
2022-10-18 12:29:50 +00:00
Hypolite Petovan
abf52c0c11
Merge pull request #12012 from nupplaphil/feat/move_monolog
...
Move Monolog to Addons
2022-10-18 07:31:59 -04:00
Hypolite Petovan
ab9b60b9d2
Merge pull request #12014 from annando/usertosession
...
The user related functions moved to the session class
2022-10-18 07:30:21 -04:00
Michael
d43122c6d8
Check the readability before acessing /proc/loadavg
2022-10-18 08:02:55 +00:00
Michael
27e9f2b223
SIGTERM moved
2022-10-18 04:35:06 +00:00
Michael
33ac39c335
The user related functions moved to the session class
2022-10-17 21:11:00 +00:00
Philipp Holzer
497fc4e432
Move Monolog to Addons
2022-10-17 22:22:00 +02:00
Michael
fdfa1f8630
The notice and info have been moved
2022-10-17 18:55:22 +00:00
Michael
20291ddc2b
Merge remote-tracking branch 'upstream/develop' into notice
2022-10-17 13:32:10 +00:00
Michael
e96fd5166a
Fix wrong constant
2022-10-17 11:28:54 +00:00
Michael
4ff7c37f85
Replace "notice" calls
2022-10-17 11:27:32 +00:00
Michael
62a0d55fc8
The friendica constants have been moved to the app class
2022-10-17 10:37:48 +00:00
Michael
9bac8153ae
Some more constants are moved to their specific classes
2022-10-17 09:24:32 +00:00
Michael
018858934b
The priority is now a class constant
2022-10-17 05:49:55 +00:00
Michael
9ffa053c90
Merge remote-tracking branch 'upstream/develop' into linked-posts
2022-10-16 21:51:26 +00:00
Michael
f8f0dfa91a
Detect linked posts and add them as quote
2022-10-16 21:37:05 +00:00
Hypolite Petovan
e556dc3c31
Add new frio.always_open_compose setting
...
- This setting allows the New Post button to always open the Compose page instead of the modal by default
2022-10-16 11:49:27 -04:00
Hypolite Petovan
d826fe0a3b
Refactor files related to the Compose page and frio theme settings
...
- Use dependencies instead of most DI calls in Module\Item\Compose
- Group translation strings in a subkey of the template variables array
- Rewrite array initializations in theme/frio/config
2022-10-16 11:48:28 -04:00
Michael
8e1af9277a
Improve quite generation
2022-10-15 13:00:52 +00:00
Roland Häder
ebf3b7e62d
Changes:
...
- Content\Item versus Model\Item solved (?)
2022-10-15 00:44:07 +02:00
Roland Häder
85ed0742cf
Fixed:
...
- Content\Item versus Model\Item is really confusing!
2022-10-15 00:44:07 +02:00
Roland Häder
8f92d1cc8e
Changes:
...
- unified class import, we had these both:
````
use Friendica\Model\Item as ModelItem;
use Friendica\Object\Post as PostObject;
````
In first version the namespace was prefixing class name, in second suffixing it.
2022-10-15 00:44:07 +02:00
Roland Häder
da66730e4f
Rewrite:
...
- moved constants GRAVITY_* from boot.php to Friendica\Model\Item
- also rewrote some array initialization:
From:
````
<?php
$arr = [];
$arr['foo'] = "FOO";
````
To:
````
<?php
$arr['foo'] = "FOO";
````
- added a few type-hints
2022-10-15 00:44:06 +02:00
Michael
3e868416c7
Check for post existence
2022-10-14 22:02:25 +00:00
Michael
88aceeb27f
Merge remote-tracking branch 'upstream/2022.09-rc' into quote-uri-id
2022-10-14 19:11:15 +00:00
Michael
c2e57c5c0e
Return the pageinfo when feed is shared
2022-10-14 04:43:46 +00:00
Michael
da2afbeae3
Merge remote-tracking branch 'upstream/2022.09-rc' into quote-again
2022-10-12 05:36:00 +00:00
Michael
e69b04d2df
Only add the media for non federated posts
2022-10-12 05:34:55 +00:00
Hypolite Petovan
0480d9aebd
Add missing post keys to retrieve pLink in Model\Event::prepareListForTemplate()
...
- Address https://github.com/friendica/friendica/issues/11632#issuecomment-1275117722
2022-10-11 22:18:52 -04:00
Michael
0e82f64d71
Only attach images
2022-10-11 21:39:28 +00:00
Michael
f1f13db24f
Simplified code
2022-10-11 20:48:47 +00:00
Michael
68d6e11d83
Fix attached media in quoted posts
2022-10-11 20:10:39 +00:00
Hypolite Petovan
9e74a1bd06
Contact array can be empty in Model\Contact::getAvatarPath
...
- Address https://github.com/friendica/friendica/issues/11630#issuecomment-1274195844
2022-10-11 08:26:00 -04:00
Michael
a67a364b91
Merge remote-tracking branch 'upstream/2022.09-rc' into quote-uri-id
2022-10-11 05:19:21 +00:00
Michael
747139d186
Quoted posts from Twitter now contain media again
2022-10-10 23:18:58 +00:00
Michael
aeb4645ba6
New field "quote-uri-id" for quoted posts
2022-10-10 22:39:30 +00:00
Michael
028de0e228
Quote of quotes are visually improved
2022-10-10 12:30:07 +00:00
Michael
a21c04d55d
Use "maxloadavg" when "worker_load_cooldown" is not defined
2022-10-10 06:01:07 +00:00
Hypolite Petovan
a10f55bb85
Merge pull request #11979 from annando/issue-11853
...
Notices
2022-10-09 17:45:33 -04:00
Hypolite Petovan
424dad886f
Merge pull request #11978 from annando/quote-simplified
...
The quote functionality is simplified
2022-10-09 17:26:22 -04:00
Michael
0d3aa681b4
The quote functionality is simplified
2022-10-09 21:16:36 +00:00
Hypolite Petovan
a4b0ebf160
Add a couple of cases to DateTimeFormat::fix()
...
- Reworked method to perform more string replacements and fewer regular expression matches
2022-10-09 09:34:38 -04:00
Hypolite Petovan
bee6506d33
Only call DateTimeFormat::fix() when there's an Exception
...
- This prevents valid date/time strings to be mangled by fix()
2022-10-09 09:34:30 -04:00
Michael Vogel
b5ad8c3e15
Merge pull request #11973 from MrPetovan/task/test-fixDateFormat
...
Add tests for DateTimeFormat::fix()
2022-10-08 17:11:10 +02:00
Michael
4552d36373
Issue 11975: Don't call the postupdate if the table is missing
2022-10-08 14:42:11 +00:00
Hypolite Petovan
47dd19ab95
Merge pull request #11974 from annando/issue-11969
...
Issue 11969: Simplified share
2022-10-08 10:04:07 -04:00
Michael
4a37c978c2
Issue 11969: Simplified share
2022-10-08 09:36:35 +00:00
Hypolite Petovan
345d307ae0
Add tests for DateTimeFormat::fix()
2022-10-07 23:10:50 -04:00
Hypolite Petovan
c0447ced48
Simplify method name for DateTimeFormat::fix
2022-10-07 23:10:50 -04:00
Hypolite Petovan
2cbc11403e
Fix parameter names before being passed to Model\Event::store
...
- Partial revert of 946db2ab45
2022-10-07 17:20:22 -04:00
Michael
1ddeaaad4a
And another weird date format
2022-10-07 19:56:02 +00:00
Michael
33d48f7d55
Use trim
2022-10-07 08:14:04 +00:00
Michael
f340fc6efa
Harmonized regular expression
2022-10-07 08:00:09 +00:00
Michael
21bd2a8396
More whitespace
2022-10-07 07:57:20 +00:00
Michael
f8d4ab1830
Whitespace removed
2022-10-07 07:55:44 +00:00
Michael
ef934db614
Moved the share interpretation
2022-10-07 07:41:03 +00:00
Michael
d7a9745ffd
Simplified share element
2022-10-07 05:51:36 +00:00
Michael
48182a95fb
Improve quote share ("message_id" added)
2022-10-06 21:50:20 +00:00
Michael
6b917718fd
Juts another date format fix
2022-10-06 21:09:52 +00:00
Michael
4c8a58c445
Akkoma is added to the federation statistics
2022-10-06 04:57:43 +00:00
Michael
f9b7f3acdb
Added sharing check for DFRN
2022-10-05 21:11:09 +00:00
Michael
bde7283b04
Fix: Undefined array key "object_object_type"
2022-10-03 20:01:28 +00:00
Michael Vogel
0a7c9c66b5
Update src/Util/DateTimeFormat.php
...
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-10-03 19:04:49 +02:00
Michael
045238070b
Issue 11938: Fix weird date formats
2022-10-03 16:12:22 +00:00
Hypolite Petovan
168827c8ae
Merge pull request #11957 from annando/issue-11891
...
Issue 11891: Enable search for user@domain.tld
2022-10-03 11:15:55 -04:00
Michael
4b8c631216
Issue 11891: Enable search for user@domain.tld
2022-10-03 13:53:19 +00:00
Michael
8347f0144b
Fix log message
2022-10-03 11:42:50 +00:00
Michael
5127784acb
Recursively check if the thread supports Diaspora
2022-10-03 11:04:57 +00:00
Michael
7395ae22f7
Issue 11952: Avoid to send AP related comments to Diaspora
2022-10-03 10:40:16 +00:00
Hypolite Petovan
38cf0666bd
Merge pull request #11955 from annando/issue-11953
...
Fix picture link removal in "getAttachedData"
2022-10-02 21:35:30 -04:00
Michael
1afbcb2486
Added description
2022-10-02 23:55:33 +00:00
Michael
bf4c5ba84f
Improved URL handling
2022-10-02 20:42:21 +00:00
Michael
0de458e134
Case changed
2022-10-02 04:51:00 +00:00
Michael
6fb5e13b08
Add ♲ symbol
2022-10-01 22:36:02 +00:00
Michael
8d9cb974af
Merge remote-tracking branch 'upstream/2022.09-rc' into transmit-quote
2022-10-01 22:30:44 +00:00
Michael
54d25ebc91
Fix picture link removal in "getAttachedData"
2022-10-01 22:26:37 +00:00
Michael
1e29c6f705
Ensure not to add the plink
2022-10-01 16:54:11 +00:00
Michael
2d6735a616
Issue 11953: Split a message in parts
2022-10-01 16:37:32 +00:00
Michael
8eb4ab2a33
Added comment for the deactivated part
2022-09-30 07:17:07 +00:00
Michael
d43b85e94b
Don't transmit the shared attachments
2022-09-30 07:10:43 +00:00
Michael
59004711ec
Support for transmitting quoted posts
2022-09-29 22:29:15 +00:00
Michael
a653c6350d
Support for quoted links is added
2022-09-29 16:04:33 +00:00
Michael
9587787089
Add uri as well
2022-09-29 14:13:39 +00:00
Michael
6140f850e1
Detect the thread parent id if it is missing
2022-09-29 13:48:10 +00:00
Michael
ff80a25966
Additional checks for non follower content
2022-09-29 12:45:47 +00:00
Michael
b10496f4e9
Changed log level
2022-09-28 16:45:18 +00:00
Michael
d821afb418
Added logging of unexpected follow messages
2022-09-28 16:32:17 +00:00
Michael
c65f78e579
Only display reshared thread starting posts
2022-09-28 09:48:48 +00:00
Hypolite Petovan
c12ac42695
Merge pull request #11940 from annando/issue-11876
...
Issue 11876: Fix local message distribution
2022-09-27 12:07:30 -04:00
Michael
2def5e9f02
Issue 11876: Fix local message distribution
2022-09-27 15:58:16 +00:00
Philipp Holzer
0ce7b49cb3
Minor l10n issue
2022-09-27 10:52:17 +02:00
Michael
4c52772d84
Use class constant
2022-09-26 13:33:31 +00:00
Michael
5e51ab95fb
Merge remote-tracking branch 'upstream/2022.09-rc' into worker-timeout
2022-09-26 13:26:56 +00:00
Hypolite Petovan
afac91fa34
Merge pull request #11936 from annando/youtube-shorts
...
Added support for the "Youtube Shorts" URL
2022-09-26 07:33:23 -04:00
Hypolite Petovan
e56e543a79
Merge pull request #11933 from nupplaphil/bug/module_returns
...
Fix /api/v1/push/subscription
2022-09-26 07:32:24 -04:00
Michael
297ddbb8c8
Added support for the "Youtube Shorts" URL
2022-09-26 07:04:35 +00:00
Michael
63ec808fb9
Issue 11932: Restore SQL performance
2022-09-26 06:39:28 +00:00
Philipp
883a2ee71b
Update src/Module/Api/Mastodon/PushSubscription.php
...
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-09-26 07:25:04 +02:00
Philipp
5c88813775
Update src/Module/Api/Mastodon/PushSubscription.php
...
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-09-26 07:24:55 +02:00
Philipp Holzer
006dbcf4ce
some code-beautification
2022-09-25 21:39:29 +02:00
Philipp Holzer
ad62265d08
Fix /api/v1/push/subscription
2022-09-25 21:39:28 +02:00
Michael
22ed028ba1
Simplified structure
2022-09-25 07:12:05 +00:00
Michael
662c846402
Issue 11919: Avoid possible memory problems
2022-09-25 06:34:13 +00:00
Hypolite Petovan
3e1b6890b7
Fix removing falsy text nodes in HTML::tagToBBCodeSub
...
- This wrongly removed text nodes containing just '0'
2022-09-24 22:03:49 -04:00
Michael
bca9069b22
Add the uri-id if missing
2022-09-24 21:53:27 +00:00
Michael Vogel
08ead52433
Merge pull request #11763 from tobiasd/marcor-newapi
...
new event APIs
2022-09-24 21:18:20 +02:00
Hypolite Petovan
5a236e0af2
Merge pull request #11925 from mexon/mat/dont-remove-slash
...
Do not remove trailing slash from URIs
2022-09-24 15:05:02 -04:00
Hypolite Petovan
02e9a867ae
Merge pull request #11926 from annando/sql-queries
...
(Hopefully) SQL improvements
2022-09-24 15:01:34 -04:00
Hypolite Petovan
080aa55302
Merge pull request #11924 from annando/error
...
Fix error "Class 'Friendica\Worker\Worker' not found"
2022-09-24 14:59:58 -04:00
Michael Vogel
b00947025a
Merge pull request #11922 from MrPetovan/bug/notices
...
Ward against missing keys in Model\APContact::isRelay
2022-09-24 20:02:21 +02:00
Michael
3911c9450b
(Hopefully) SQL improvements
2022-09-24 17:56:07 +00:00
Michael
bd817d2391
Fix error "Class 'Friendica\Worker\Worker' not found"
2022-09-24 17:29:00 +00:00
Matthew Exon
7613433357
Do not remove trailing slash from URIs
2022-09-24 17:57:28 +02:00
Hypolite Petovan
6ca725e5b6
Check for network key existence before calling Probe::isProbable in Model\Contact
...
- Address https://github.com/friendica/friendica/issues/11630#issuecomment-1253225607
2022-09-24 10:18:41 -04:00
Hypolite Petovan
ded5a0ac6a
Ward against missing keys in Model\APContact::isRelay
...
- Address https://github.com/friendica/friendica/issues/11632#issuecomment-1231904280
2022-09-24 09:56:12 -04:00
Michael Vogel
98a4c7a56c
We can now configure the worker runtime limits
2022-09-24 10:00:41 +02:00
Hypolite Petovan
be9bbe1709
Merge pull request #11917 from annando/cooldown
...
More cooldown calls for worker processes
2022-09-22 22:39:04 -04:00
Michael
97e5477bde
static cooldown moved to the cooldown function
2022-09-22 22:46:59 +00:00
Hypolite Petovan
264b8f27fd
Merge pull request #11918 from annando/fcontact
...
Worker for updating fcontact entries
2022-09-22 11:00:15 -04:00
Michael
e1341b6ad3
Fallback for load detection, additional checks
2022-09-22 05:45:42 +00:00
Michael
4939be065e
Merge remote-tracking branch 'upstream/2022.09-rc' into cooldown
2022-09-22 04:31:50 +00:00
Hypolite Petovan
6a9d91c824
Merge pull request #11902 from annando/duplicates
...
Detect and remove contact duplicates
2022-09-21 21:23:37 -04:00
Michael Vogel
c87150819b
Worker for updating fcontact entries
2022-09-21 22:47:09 +02:00
Michael Vogel
0fa281247d
More cooldown calls for worker processes
2022-09-21 21:03:07 +02:00
Michael Vogel
6ee8a966bf
Fix forum delivery in case of beiong addressed via "@"
2022-09-21 10:54:05 +02:00
Michael
36668dfdb1
Merge remote-tracking branch 'upstream/2022.09-rc' into duplicates
2022-09-21 03:46:25 +00:00
Hypolite Petovan
4deee0932c
Merge pull request #11910 from annando/logging
...
Improved page rendering speed logging
2022-09-20 21:05:58 -04:00
Michael Vogel
7ae500f28d
Improved page rendering speed logging
2022-09-20 16:30:56 +02:00
Michael Vogel
199d8bbf35
Merge remote-tracking branch 'upstream/2022.09-rc' into relay-languages
2022-09-20 06:05:15 +02:00
Michael Vogel
6ba2c4bb01
Added documentation
2022-09-19 12:49:37 +02:00
Michael Vogel
3650feb256
"Count" parameter added
2022-09-19 12:46:28 +02:00
Michael Vogel
f08b08e0d8
Allow to reject specific languages on receiving posts via the relay
2022-09-19 12:36:12 +02:00
Michael Vogel
2525b3f2ae
Update src/Network/Probe.php
...
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
2022-09-19 07:52:40 +02:00
Michael Vogel
e5c24f33f0
The fcontact table is now updated in the background to improve performance
2022-09-18 15:40:44 +02:00
Michael
79b64cc44f
Detect and remove contact duplicates
2022-09-16 05:00:06 +00:00
Hypolite Petovan
636325efcc
Merge pull request #11899 from annando/native-xml
...
Template based XML generation is replaced with native XML
2022-09-11 04:39:39 -04:00
Michael
ff89c1a8bf
Template based XML generation is replaced with native XML
2022-09-11 07:00:16 +00:00
Hypolite Petovan
cacfc6ec92
Enable POST route for /filerm module
...
- This prevents a costly page empty page render when calling the module asynchronously
2022-09-11 02:36:06 -04:00
Hypolite Petovan
bdd80eeaaf
Fix wrong parameter name in Core\System::httpExit
2022-09-11 02:36:05 -04:00
Michael
63e1ad7dba
Read the config at another place
2022-09-08 06:21:16 +00:00
Michael
ff677a1b27
Smarty: Configuration added to store without sub directories
2022-09-08 05:10:26 +00:00
Hypolite Petovan
7da43fe28a
Merge pull request #11892 from annando/pagecache
...
Pagecache for frequently fetched pages
2022-09-07 22:25:19 -04:00
Michael
a0b99f61ea
Use the cached activity function
2022-09-07 19:46:24 +00:00
Michael
0121c2845a
Test stuff removed
2022-09-06 22:56:56 +00:00
Michael
da658cbf1d
Delete the cache entry when the post is changed or deleted
2022-09-06 21:51:47 +00:00
Michael
d7212cbbbc
Function only needn't to be public
2022-09-06 20:47:18 +00:00
Michael
ec8377a8c7
Issue 11893: Postupdate to fix wrong parents
2022-09-06 20:00:06 +00:00
Michael
7c9f10e58f
Merge remote-tracking branch 'upstream/2022.09-rc' into pagecache
2022-09-06 17:36:42 +00:00
Michael
2a4c6d44bb
Don't transmit empty conversations
2022-09-06 15:18:41 +00:00
Michael
f0d151932e
Issue 11890: Don't use empty contexts
2022-09-06 14:08:25 +00:00
Michael
6eb9dff807
Pagecache for frequently fetched pages
2022-09-06 06:04:41 +00:00
Hypolite Petovan
934a3a6721
Merge pull request #11887 from annando/maxload
...
Pause the worker execution when the load is too high
2022-09-04 15:54:40 -04:00
Hypolite Petovan
8f283985f0
Merge pull request #11884 from annando/language
...
Improved language detection
2022-09-04 15:52:29 -04:00
Michael
e2cb705468
Merge remote-tracking branch 'upstream/2022.09-rc' into language
2022-09-04 17:04:13 +00:00
Michael
437c230a6f
Merge remote-tracking branch 'upstream/2022.09-rc' into database
2022-09-04 17:03:14 +00:00
Michael
96ae2c8f56
Merge remote-tracking branch 'upstream/2022.09-rc' into maxload
2022-09-04 17:01:35 +00:00
Michael
f5d6671fbd
Merge remote-tracking branch 'upstream/2022.09-rc' into performance
2022-09-04 14:08:16 +00:00
Michael
12d4bae28f
Merge remote-tracking branch 'upstream/2022.09-rc' into language
2022-09-04 14:05:46 +00:00
Michael
075638c0ae
Pause the worker execution when the load is too high
2022-09-04 13:54:32 +00:00
Michael
f93418b295
Merge remote-tracking branch 'upstream/2022.09-rc' into database
2022-09-04 13:41:21 +00:00
Michael
c3d478aeed
Improved logger calls
2022-09-04 09:22:15 +00:00
Michael
144547009b
All URL fields are now binary and longer
2022-09-04 07:54:01 +00:00
Michael
f22a4ba6f5
Be more tolerant when receiving messages
2022-09-04 07:39:09 +00:00
Michael
4304aa9eec
Improved language detection
2022-09-04 07:32:46 +00:00
Michael
9f2d3e6f88
Use AP data when possible
2022-09-04 07:15:04 +00:00
Michael
f7be610629
Fix logger warmings/errors
2022-09-03 13:32:41 +00:00
Michael
3e28d62bdb
Fix receiving of reshared posts
2022-08-31 21:18:33 +00:00
Michael
cc43b567cb
Some changes after code review
2022-08-31 19:03:37 +00:00
Michael
9ca470cc94
Reverted experimental change
2022-08-31 05:02:28 +00:00
Michael
f7b85092b0
Some more changed log levels
2022-08-31 05:01:22 +00:00
Michael
757a5c2de9
Loglevels are adjusted
2022-08-30 19:45:30 +00:00
Michael
3a840aa22d
Some more warnings and erors are fixed
2022-08-28 19:27:21 +00:00
Michael
61cbcf85a1
Issue 11870: Weeks can now start at every day
2022-08-28 09:15:00 +00:00
Michael
3052ae71b7
Avoid warnings
2022-08-28 09:12:36 +00:00
Michael
4e02c347b6
Handle array
2022-08-28 04:14:39 +00:00
Michael
d54cf9cc21
Avoid warnings/fatal errors
2022-08-28 04:00:18 +00:00
Michael
2173fb38e0
Issue 11853/11867: Fix reshare of public posts
2022-08-27 21:22:49 +00:00
Michael
a0eaff8fd5
Fix issue 11865
2022-08-27 11:43:46 +00:00
Michael
ceb88c10e6
Warnings/Errors reduced - improved relay processing
2022-08-27 08:08:58 +00:00
Michael
1db70b8935
Merge remote-tracking branch 'upstream/develop' into database2
2022-08-25 18:48:24 +00:00
Michael
dd8279afc2
Some more protection against database errors
2022-08-25 18:47:07 +00:00