Don't init twice
This commit is contained in:
parent
f4a3f06aae
commit
dd6672f9ba
2 changed files with 10 additions and 11 deletions
|
@ -103,5 +103,3 @@ export async function getTemperature(): Promise<number> {
|
|||
return (await FAN_CLIENT!.get_temperature(true))?? -273;
|
||||
//return (await call_backend("get_temperature", []))[0];
|
||||
}
|
||||
|
||||
initBackend();
|
||||
|
|
|
@ -305,7 +305,6 @@ const Content: VFC<{ serverAPI: ServerAPI }> = ({serverAPI}) => {
|
|||
);
|
||||
};
|
||||
|
||||
export default definePlugin((serverApi: ServerAPI) => {
|
||||
(async function(){
|
||||
if (!usdplReady) {
|
||||
await backend.initBackend();
|
||||
|
@ -316,6 +315,8 @@ export default definePlugin((serverApi: ServerAPI) => {
|
|||
}
|
||||
})();
|
||||
|
||||
export default definePlugin((serverApi: ServerAPI) => {
|
||||
|
||||
let ico = <FaFan />;
|
||||
let now = new Date();
|
||||
if (now.getDate() == 1 && now.getMonth() == 3) {
|
||||
|
|
Loading…
Reference in a new issue