remove console log

This commit is contained in:
MathieuG-P
2022-12-12 22:01:00 +01:00
parent 79ecaf3d15
commit 0372f7a1d5
@@ -22,8 +22,6 @@ export class BeatSaverService {
public async getMapDetailsFromHashs(hashs: string[]): Promise<BsvMapDetail[]>{
console.log(hashs);
const filtredHashs = hashs.map(h => h.toLowerCase()).filter(hash => !Array.from(this.cachedMapsDetails.keys()).includes(hash));
const chunkHash = splitIntoChunk(filtredHashs, 50);