mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-06 01:20:41 +00:00
fix: bad wrapper wrap (#1908)
This commit is contained in:
@@ -16,7 +16,7 @@ export class MeteringServiceWrapper extends BaseService {
|
||||
// for now this is util so you don't have to extract this.meteringService
|
||||
Object.getOwnPropertyNames(MeteringService.prototype).forEach(fn => {
|
||||
if ( fn === 'constructor' ) return;
|
||||
this[fn] = (...args) => this.meteringService[fn](args);
|
||||
this[fn] = (...args) => this.meteringService[fn](...args);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user