mirror of
https://github.com/danog/magnaluna.git
synced 2024-12-02 09:17:49 +01:00
Fixes
This commit is contained in:
parent
2bd5ab8f7e
commit
2b0e7e69c6
@ -44,6 +44,11 @@ if (file_exists('vendor/autoload.php')) {
|
|||||||
include 'madeline.php';
|
include 'madeline.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$songs = glob('*ogg')
|
||||||
|
if (!$songs) {
|
||||||
|
die('No songs defined! Convert some songs by sending them to https://t.me/libtgvoipbot');
|
||||||
|
}
|
||||||
|
|
||||||
/*class MessageLoop extends ResumableSignalLoop
|
/*class MessageLoop extends ResumableSignalLoop
|
||||||
{
|
{
|
||||||
const INTERVAL = 10000;
|
const INTERVAL = 10000;
|
||||||
@ -214,7 +219,7 @@ class MyEventHandler extends SimpleEventHandler
|
|||||||
{
|
{
|
||||||
$songs = glob('*ogg');
|
$songs = glob('*ogg');
|
||||||
if (!$songs) {
|
if (!$songs) {
|
||||||
die('No songs defined! Convert some songs as described in https://docs.madelineproto.xyz/docs/CALLS.html');
|
throw new \AssertionError('No songs defined! Convert some songs by sending them to https://t.me/libtgvoipbot');
|
||||||
}
|
}
|
||||||
$songs_length = count($songs);
|
$songs_length = count($songs);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user