Fix missed Notification using old Message::class
All checks were successful
Create Docker Image / Build Docker Image (x86_64) (push) Successful in 38s
Create Docker Image / Build Docker Image (arm64) (push) Successful in 1m42s
Create Docker Image / Final Docker Image Manifest (push) Successful in 11s

This commit is contained in:
Deon George 2024-05-21 21:41:23 +10:00
parent 93272f57a9
commit 248733c15e
2 changed files with 6 additions and 11 deletions

View File

@ -3,9 +3,7 @@
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Facades\Storage;
use App\Classes\File;
use App\Classes\FTN\Packet;
use App\Jobs\PacketProcess as Job;
use App\Models\Address;
@ -60,16 +58,13 @@ class PacketProcess extends Command
/**
* Execute the console command.
*
* @return void
* @throws \App\Exceptions\InvalidPacketException
* @return int|void
* @throws \Exception
*/
public function handle()
{
//$fs = Storage::disk(config('fido.local_disk'));
$rel_name = sprintf('%s/%s',config('fido.dir'),$this->argument('file'));
//$f = new File($fs->path($rel_name));
$m = [];
if ($this->argument('ftn')) {
$ao = Address::findFTN($this->argument('ftn'));
@ -84,6 +79,6 @@ class PacketProcess extends Command
Job::dispatchSync($rel_name,$ao->zone->domain,$this->option('dontqueue'));
return Command::SUCCESS;
return self::SUCCESS;
}
}

View File

@ -16,14 +16,14 @@ class EchomailBadAddress extends Netmails
private const LOGKEY = 'NBA';
private Message $mo;
private Netmail $mo;
/**
* Send a sysop a message if they give us a message with a bad address in it.
*
* @param Message $mo
* @param Netmail $mo
*/
public function __construct(Message $mo)
public function __construct(Netmail $mo)
{
parent::__construct();