TIC and PKT passwords are case insensitive, so convert them to uppercase when we are using them

This commit is contained in:
2023-11-25 09:47:58 +11:00
parent 4070a060c3
commit 6abf10ab0b
3 changed files with 4 additions and 4 deletions

View File

@@ -418,7 +418,7 @@ class Packet extends FTNBase implements \Iterator, \Countable
'H' => $date->format('H'), // Hour
'M' => $date->format('i'), // Minute
'S' => $date->format('s'), // Second
'password' => (! is_null($passwd)) ? $passwd : $o->session('pktpass'), // Packet Password
'password' => strtoupper((! is_null($passwd)) ? $passwd : $o->session('pktpass')), // Packet Password
];
}