Skip to content

Commit f428f45

Browse files
committed
Update README to include Domotz as a network monitoring option and refine device management logic in deviceDetails.php
1 parent 9575692 commit f428f45

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ Get notified about a new release, what new functionality you can use and about b
170170
- [Fing](https://www.fing.com/) - Network scanner app for your Internet security (Commercial, Phone App, Proprietary hardware)
171171
- [NetBox](https://netboxlabs.com/) - The gold standard for Network Source of Truth (NSoT) and IPAM.
172172
- [Zabbix](https://www.zabbix.com/) or [Nagios](https://www.nagios.org/) - Strong focus on infrastructure monitoring.
173+
- [Domotz](https://www.domotz.com/) - Commercial network monitoring and remote management platform aimed at MSPs, IT teams, and multi-site environments.
173174
- [NetAlertX](https://netalertx.com) - The streamlined, discovery-focused choice for real-time asset intelligence and noise-free alerting.
174175

175176
### 💙 Donations

front/deviceDetails.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ function applyDevicePageTitle(mac, name, owner) {
540540
let owner = getDevDataByMac(mac, "devOwner");
541541

542542
// Stage 2: one re-cache attempt
543-
if (mac !== 'new' && (name === null || owner === null)) {
543+
if (mac !== 'new' && name === null) {
544544
console.warn("Device not in cache, attempting re-cache:", mac);
545545
showSpinner();
546546
try {
@@ -555,7 +555,7 @@ function applyDevicePageTitle(mac, name, owner) {
555555
}
556556

557557
// Stage 3: REST fallback — same endpoint renderSmallBoxes uses, always DB-direct
558-
if (mac !== 'new' && (name === null || owner === null)) {
558+
if (mac !== 'new' && name === null) {
559559
console.warn("Device not found in cache after re-cache, falling back to REST API:", mac);
560560
try {
561561
const { apiBase, authHeader } = getAuthContext();

0 commit comments

Comments
 (0)