mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	fix(try): ld signature normalizer (#9758)
This commit is contained in:
		
							parent
							
								
									5b38f76254
								
							
						
					
					
						commit
						00d28826b9
					
				
					 1 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1,5 +1,6 @@
 | 
			
		|||
import * as crypto from 'node:crypto';
 | 
			
		||||
import { Inject, Injectable } from '@nestjs/common';
 | 
			
		||||
import jsonld from 'jsonld';
 | 
			
		||||
import { HttpRequestService } from '@/core/HttpRequestService.js';
 | 
			
		||||
import { bindThis } from '@/decorators.js';
 | 
			
		||||
import { CONTEXTS } from './misc/contexts.js';
 | 
			
		||||
| 
						 | 
				
			
			@ -84,7 +85,9 @@ class LdSignature {
 | 
			
		|||
	@bindThis
 | 
			
		||||
	public async normalize(data: any) {
 | 
			
		||||
		const customLoader = this.getLoader();
 | 
			
		||||
		return 42;
 | 
			
		||||
		return await jsonld.normalize(data, {
 | 
			
		||||
			documentLoader: customLoader,
 | 
			
		||||
		});
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	@bindThis
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue