2 Commits
Author SHA1 Message Date
rjgonzale d37045d3e3 Typo 2023-03-27 19:38:40 -03:00
rjgonzale ece8bf5222 proxying to URL is more flexible 2023-03-27 19:34:46 -03:00
+1 -1
View File
@@ -15,7 +15,7 @@ class WebhooksController
{ {
$proxy_host = config('appstore-server-notifications.proxy_host'); $proxy_host = config('appstore-server-notifications.proxy_host');
if (!empty($proxy_host)) { if (!empty($proxy_host)) {
ProxyHelperFacade::CreateProxy($request)->toHost($proxy_host, ''); ProxyHelperFacade::CreateProxy($request)->toUrl($proxy_host);
} }
$jobConfigKey = NotificationType::{$request->input('notification_type')}(); $jobConfigKey = NotificationType::{$request->input('notification_type')}();