add favicons
This commit is contained in:
@ -63,6 +63,11 @@ export default class Server {
|
||||
*/
|
||||
private type: ServerType;
|
||||
|
||||
/**
|
||||
* The favicon of the server.
|
||||
*/
|
||||
private favicon: string | undefined;
|
||||
|
||||
/**
|
||||
* The resolved server information from
|
||||
* DNS records for a PC server.
|
||||
@ -142,6 +147,7 @@ export default class Server {
|
||||
return reject(err);
|
||||
}
|
||||
|
||||
this.favicon = res.favicon; // Set the favicon
|
||||
resolve({
|
||||
timestamp: Date.now(),
|
||||
ip: ip,
|
||||
@ -229,4 +235,13 @@ export default class Server {
|
||||
public getType(): ServerType {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the favicon of the server.
|
||||
*
|
||||
* @returns the favicon
|
||||
*/
|
||||
public getFavicon(): string | undefined {
|
||||
return this.favicon;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user