- Jul 10, 2019
- Jul 09, 2019
-
-
Eugen Rochko authored
Fix #11270
-
Eugen Rochko authored
-
- Jul 08, 2019
-
-
ThibG authored
-
Eugen Rochko authored
-
Eugen Rochko authored
-
ThibG authored
* Fix BackupService crashing when an attachment is missing For various reasons such as admin error or out-of-sync media and database backups, it might be possible for local attachments to be lost. This commit allows the BackupService to continue its work even if some media file is missing. * Change error message
-
- Jul 07, 2019
-
-
Eugen Rochko authored
-
Eugen Rochko authored
-
ThibG authored
* Disable incorrect check for hidden services in Socket Hidden services can only be accessed with an HTTP proxy, in which case the host seen by the Socket class will be the proxy, not the target host. Hidden services are already filtered in `Request#initialize`. * Use our Socket class to connect to HTTP proxies Avoid the timeout logic being bypassed * Add support for IP addresses in Request::Socket * Refactor a bit, no need to keep the DNS resolver around
-
- Jul 06, 2019
-
-
Eugen Rochko authored
* Remove Salmon and PubSubHubbub endpoints * Add error when trying to follow OStatus accounts * Fix new accounts not being created in ResolveAccountService
-
ThibG authored
Avoids jumping the scroll around vertically when giving it focus and editing long toots.
-
Eugen Rochko authored
-
- Jul 05, 2019
-
-
ThibG authored
-
Eugen Rochko authored
-
Eugen Rochko authored
-
- Jul 02, 2019
-
-
ThibG authored
-
- Jul 01, 2019
-
-
Eugen Rochko authored
-
Eugen Rochko authored
-
ThibG authored
Use the smallest preset expires_in such that the new poll would not expire before the old one. In the typical case of a quick delete & redraft, this results in using the same poll duration. Fixes #10567
-
Eugen Rochko authored
* Add request pool to improve delivery performance Fix #7909 * Ensure connection is closed when exception interrupts execution * Remove Timeout#timeout from socket connection * Fix infinite retrial loop on HTTP::ConnectionError * Close sockets on failure, reduce idle time to 90 seconds * Add MAX_REQUEST_POOL_SIZE option to limit concurrent connections to the same server * Use a shared pool size, 512 by default, to stay below open file limit * Add some tests * Add more tests * Reduce MAX_IDLE_TIME from 90 to 30 seconds, reap every 30 seconds * Use a shared pool that returns preferred connection but re-purposes other ones when needed * Fix wrong connection being returned on subsequent calls within the same thread * Reduce mutex calls on flushes from 2 to 1 and add test for reaping
-
Eugen Rochko authored
-
- Jun 30, 2019
-
-
ThibG authored
When editing a custom filter, select the shortest preset duration that still covers the remaining time of that filter. Fixes #9506
-
Eugen Rochko authored
Resolve #11187
-
- Jun 29, 2019
-
-
ThibG authored
* Optimize makeGetStatus Because `ImmutableList.filter` always returns a new object and `createSelector` memoizes based on object identity, the selector returned by `makeGetStatus` would *always* execute. To avoid that, we wrap `getFilters` into a new memoizer that memoizes based on deep equality, thus returning the same object as long as the filters haven't changed, allowing the memoization of `makeGetStatus` to work. Furthermore, we memoize the compiled regexs instead of recomputing them each time the selector is called. * Fix memoized result being cleared too often * Make notifications use memoized getFiltersRegex
-
ThibG authored
In some occasions, such as the browser or a browser extension auto-filling the existing but disabled/hidden CW field, a CW can be set without the user knowing.
-
ThibG authored
-
- Jun 28, 2019
-
-
ThibG authored
Follow-up to #11112
-
Eugen Rochko authored
Fix #7940
-
ThibG authored
Fixes #9779
-
- Jun 27, 2019
- Jun 26, 2019
-
-
ThibG authored
* Add option to disable blurhash previews * Update option text * Change options order
-
ThibG authored
Fixes #11127
-
ThibG authored
-
PatOnTheBack authored
-
- Jun 25, 2019
-
-
Eugen Rochko authored
-
ThibG authored
* Apply filters to poll options in WebUI Fixes #11128 * Apply filters to poll options server-side * Add poll options to searchable text
-