Compare commits

..

No commits in common. "main" and "1.1.2" have entirely different histories.
main ... 1.1.2

2 changed files with 0 additions and 8 deletions

View File

@ -5,12 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.3] - 2025-08-08
### Fixed
- Fix parsing of the output of '/bin/ip -json'
## [1.1.2] - 2025-07-31
### Changed

View File

@ -241,8 +241,6 @@ def _clientip():
ipasj = json.loads (ipas)
addresses = []
for e in ipasj:
if not isinstance(e, dict): continue
if 'ifname' not in e: continue
if 'lo' == e['ifname']: continue
if 'addr_info' not in e: continue
addrs = e['addr_info']