mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-07 13:15:28 +02:00
Experimental terminalSupports(x)
This commit is contained in:
parent
f0d6eb5847
commit
8d5f1a8c5d
1 changed files with 10 additions and 0 deletions
|
@ -492,3 +492,13 @@ Client.prototype.defaultHandlerMissingMod = function(err) {
|
|||
return handler;
|
||||
};
|
||||
|
||||
Client.prototype.terminalSupports = function(query) {
|
||||
switch(query) {
|
||||
case 'vtx_audio' :
|
||||
// https://github.com/codewar65/VTX_ClientServer/blob/master/vtx.txt
|
||||
return this.termClient === 'vtx';
|
||||
|
||||
default :
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue