Skip to content

Commit

Permalink
Cut network name to 32 in legacy Server (#1422)
Browse files Browse the repository at this point in the history
... was missed
  • Loading branch information
Apollon77 authored Nov 22, 2024
1 parent 031b616 commit e56e388
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const GeneralDiagnosticsClusterHandler: () => Promise<
.filter(({ mac }) => mac !== "00:00:00:00:00:00")
.slice(0, 8)
.map(({ name, mac, ipV4, ipV6, type }) => ({
name,
name: name.substring(0, 32),
isOperational: true,
offPremiseServicesReachableIPv4: null, // null means unknown or not supported
offPremiseServicesReachableIPv6: null, // null means unknown or not supported
Expand Down

0 comments on commit e56e388

Please sign in to comment.