mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	
							parent
							
								
									8263cc0094
								
							
						
					
					
						commit
						981e6f996e
					
				
					 2 changed files with 12 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -14,6 +14,9 @@
 | 
			
		|||
 | 
			
		||||
## 13.13.1 (unreleased)
 | 
			
		||||
 | 
			
		||||
### Client
 | 
			
		||||
- Fix: タブがアクティブな間はstreamが切断されないように
 | 
			
		||||
 | 
			
		||||
### Server
 | 
			
		||||
- Fix: api/metaで`TypeError: JSON5.parse is not a function`エラーが発生する問題を修正
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -12,5 +12,14 @@ export function useStream(): Misskey.Stream {
 | 
			
		|||
		token: $i.token,
 | 
			
		||||
	} : null));
 | 
			
		||||
 | 
			
		||||
	window.setTimeout(heartbeat, 1000 * 60);
 | 
			
		||||
 | 
			
		||||
	return stream;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function heartbeat(): void {
 | 
			
		||||
	if (stream != null && document.visibilityState === 'visible') {
 | 
			
		||||
		stream.send('ping');
 | 
			
		||||
	}
 | 
			
		||||
	window.setTimeout(heartbeat, 1000 * 60);
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue