mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-28 17:43:47 +00:00
fix: handle undefined inbounds/outbounds in traffic tab
API may return nodes without inbounds/outbounds arrays. Made fields optional in NodeRealtimeStats and added null safety guards in TrafficTab.
This commit is contained in:
@@ -174,8 +174,8 @@ export interface NodeRealtimeStats {
|
||||
uploadBytes: number;
|
||||
totalBytes: number;
|
||||
usersOnline: number;
|
||||
inbounds: InboundTraffic[];
|
||||
outbounds: InboundTraffic[];
|
||||
inbounds?: InboundTraffic[];
|
||||
outbounds?: InboundTraffic[];
|
||||
}
|
||||
|
||||
// Squads
|
||||
|
||||
Reference in New Issue
Block a user