Skip to content
Snippets Groups Projects
Unverified Commit 020cd5cc authored by xtexChooser's avatar xtexChooser Committed by GitHub
Browse files

fix: typo (#9300)

parent 847f5936
No related branches found
No related tags found
No related merge requests found
......@@ -10,20 +10,20 @@ import { bindThis } from '@/decorators.js';
@Injectable()
export class IdService {
private metohd: string;
private method: string;
constructor(
@Inject(DI.config)
private config: Config,
) {
this.metohd = config.id.toLowerCase();
this.method = config.id.toLowerCase();
}
@bindThis
public genId(date?: Date): string {
if (!date || (date > new Date())) date = new Date();
switch (this.metohd) {
switch (this.method) {
case 'aid': return genAid(date);
case 'meid': return genMeid(date);
case 'meidg': return genMeidg(date);
......
......@@ -6,14 +6,14 @@ import * as crypto from 'node:crypto';
const TIME2000 = 946684800000;
let counter = crypto.randomBytes(2).readUInt16LE(0);
function getTime(time: number) {
function getTime(time: number): string {
time = time - TIME2000;
if (time < 0) time = 0;
return time.toString(36).padStart(8, '0');
}
function getNoise() {
function getNoise(): string {
return counter.toString(36).padStart(2, '0').slice(-2);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment