1
0
Fork 0

Merge pull request #2902 from pixelfed/staging

Staging
This commit is contained in:
daniel 2021-09-04 03:23:11 -06:00 committed by GitHub
commit 35de09dcf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -106,6 +106,7 @@
- Updated InstanceCrawlPipeline, remove unused variable. ([e73cf531](https://github.com/pixelfed/pixelfed/commit/e73cf531))
- Updated StoryComposeController, fix expiry bug. ([7dee8f58](https://github.com/pixelfed/pixelfed/commit/7dee8f58))
- Updated Profile, fix following count bug. ([ee9f0795](https://github.com/pixelfed/pixelfed/commit/ee9f0795))
- Updated DirectMessageController, fix autocomplete bug. ([0f00be4d](https://github.com/pixelfed/pixelfed/commit/0f00be4d))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.11.0 (2021-06-01)](https://github.com/pixelfed/pixelfed/compare/v0.10.10...v0.11.0)

View File

@ -390,7 +390,6 @@ class DirectMessageController extends Controller
$min_id = $request->input('min_id');
$r = Profile::findOrFail($pid);
// $r = Profile::whereNull('domain')->findOrFail($pid);
if($min_id) {
$res = DirectMessage::select('*')
@ -590,13 +589,13 @@ class DirectMessageController extends Controller
{
$this->validate($request, [
'q' => 'required|string|min:2|max:50',
'remote' => 'nullable|boolean',
'remote' => 'nullable',
]);
$q = $request->input('q');
$r = $request->input('remote');
$r = $request->input('remote', false);
if(!Str::of($q)->contains('.')) {
if($r && !Str::of($q)->contains('.')) {
return [];
}