mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	fix: lastReceivedAt always being N/A
This commit is contained in:
		
							parent
							
								
									ccd3789cc6
								
							
						
					
					
						commit
						53f2089116
					
				
					 3 changed files with 7 additions and 1 deletions
				
			
		|  | @ -47,6 +47,7 @@ export class InstanceEntityService { | ||||||
| 			faviconUrl: instance.faviconUrl, | 			faviconUrl: instance.faviconUrl, | ||||||
| 			themeColor: instance.themeColor, | 			themeColor: instance.themeColor, | ||||||
| 			infoUpdatedAt: instance.infoUpdatedAt ? instance.infoUpdatedAt.toISOString() : null, | 			infoUpdatedAt: instance.infoUpdatedAt ? instance.infoUpdatedAt.toISOString() : null, | ||||||
|  | 			latestRequestReceivedAt: instance.latestRequestReceivedAt ? instance.latestRequestReceivedAt.toISOString() : null, | ||||||
| 		}; | 		}; | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -103,5 +103,10 @@ export const packedFederationInstanceSchema = { | ||||||
| 			optional: false, nullable: true, | 			optional: false, nullable: true, | ||||||
| 			format: 'date-time', | 			format: 'date-time', | ||||||
| 		}, | 		}, | ||||||
|  | 		latestRequestReceivedAt: { | ||||||
|  | 			type: 'string', | ||||||
|  | 			optional: false, nullable: true, | ||||||
|  | 			format: 'date-time', | ||||||
|  | 		}, | ||||||
| 	}, | 	}, | ||||||
| } as const; | } as const; | ||||||
|  |  | ||||||
|  | @ -52,7 +52,7 @@ SPDX-License-Identifier: AGPL-3.0-only | ||||||
| 				</MkKeyValue> | 				</MkKeyValue> | ||||||
| 				<MkKeyValue oneline style="margin: 1em 0;"> | 				<MkKeyValue oneline style="margin: 1em 0;"> | ||||||
| 					<template #key>{{ i18n.ts.latestRequestReceivedAt }}</template> | 					<template #key>{{ i18n.ts.latestRequestReceivedAt }}</template> | ||||||
| 					<template #value><MkTime v-if="instance.latestRequestReceivedAt" :time="instance.latestRequestReceivedAt"/><span v-else>N/A</span></template> | 					<template #value><MkTime v-if="instance.latestRequestReceivedAt" mode="detail" :time="instance.latestRequestReceivedAt"/><span v-else>N/A</span></template> | ||||||
| 				</MkKeyValue> | 				</MkKeyValue> | ||||||
| 			</FormSection> | 			</FormSection> | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		
		Reference in a new issue