Daniel Supernault 4 月之前
父节点
当前提交
decaa2596d

+ 1 - 0
CHANGELOG.md

@@ -42,6 +42,7 @@
 - Update MediaStorageService, handle local media deletes after successful S3 upload ([280f63dc](https://github.com/pixelfed/pixelfed/commit/280f63dc))
 - Update status twitter:card to summary_large_image for images/albums ([9a5a9f55](https://github.com/pixelfed/pixelfed/commit/9a5a9f55))
 - Update CuratedOnboarding, add new app:curated-onboarding command, extend email verification window to 7 days and fix resend verification mails ([49604210](https://github.com/pixelfed/pixelfed/commit/49604210))
+- Update DirectMessageController, fix performance issue ([4ec9f99](https://github.com/pixelfed/pixelfed/commit/4ec9f99))
 -  ([](https://github.com/pixelfed/pixelfed/commit/))
 
 ## [v0.12.4 (2024-11-08)](https://github.com/pixelfed/pixelfed/compare/v0.12.4...dev)

+ 1 - 1
app/Console/Commands/UserAccountDelete.php

@@ -100,7 +100,7 @@ class UserAccountDelete extends Command
                             CURLOPT_HTTPHEADER => $headers,
                             CURLOPT_POSTFIELDS => $payload,
                             CURLOPT_HEADER => true,
-                            CURLOPT_SSL_VERIFYPEER => false,
+                            CURLOPT_SSL_VERIFYPEER => true,
                             CURLOPT_SSL_VERIFYHOST => false,
                         ],
                     ]);

+ 1 - 1
app/Jobs/ProfilePipeline/ProfileMigrationDeliverMoveActivityPipeline.php

@@ -117,7 +117,7 @@ class ProfileMigrationDeliverMoveActivityPipeline implements ShouldBeUniqueUntil
                             CURLOPT_HTTPHEADER => $headers,
                             CURLOPT_POSTFIELDS => $payload,
                             CURLOPT_HEADER => true,
-                            CURLOPT_SSL_VERIFYPEER => false,
+                            CURLOPT_SSL_VERIFYPEER => true,
                             CURLOPT_SSL_VERIFYHOST => false,
                         ],
                     ]);

+ 1 - 1
app/Jobs/StatusPipeline/StatusActivityPubDeliver.php

@@ -126,7 +126,7 @@ class StatusActivityPubDeliver implements ShouldQueue
 							CURLOPT_HTTPHEADER => $headers,
 							CURLOPT_POSTFIELDS => $payload,
 							CURLOPT_HEADER => true,
-							CURLOPT_SSL_VERIFYPEER => false,
+							CURLOPT_SSL_VERIFYPEER => true,
 							CURLOPT_SSL_VERIFYHOST => false
 						]
 					]);

+ 1 - 1
app/Jobs/StatusPipeline/StatusLocalUpdateActivityPubDeliverPipeline.php

@@ -106,7 +106,7 @@ class StatusLocalUpdateActivityPubDeliverPipeline implements ShouldQueue
 							CURLOPT_HTTPHEADER => $headers,
 							CURLOPT_POSTFIELDS => $payload,
 							CURLOPT_HEADER => true,
-							CURLOPT_SSL_VERIFYPEER => false,
+							CURLOPT_SSL_VERIFYPEER => true,
 							CURLOPT_SSL_VERIFYHOST => false
 						]
 					]);