fix(ios): iptal edilen isteklerde hata gösterimini düzelt

- API uç noktasını yeni IP adresine güncelle
- Docker yapılandırmasında node_modules için adlandırılmış volume ekle
- Arama işlemlerinde iptal durumlarını yoksay ve hata mesajı gösterme
- NetworkErrorView'da wifi ikonunu kaldır
This commit is contained in:
2026-02-11 22:22:20 +03:00
parent 362b9b7d1b
commit 98e2a1d3f1
9 changed files with 39 additions and 8 deletions

View File

@@ -108,7 +108,7 @@ extension Bundle {
return url
}
// 2) If scheme is missing (e.g. "192.168.1.124:8080"), prepend http://.
// 2) If scheme is missing (e.g. "192.168.1.141:8080"), prepend http://.
if !raw.isEmpty, !raw.contains("://"),
let url = URL(string: "http://\(raw)"),
let host = url.host, !host.isEmpty {
@@ -116,7 +116,7 @@ extension Bundle {
}
// 3) Device-local fallback for current dev network.
if let fallback = URL(string: "http://192.168.1.124:8080") {
if let fallback = URL(string: "http://192.168.1.141:8080") {
#if DEBUG
print("[API] Invalid API_BASE_URL='\(raw)'. Falling back to \(fallback.absoluteString)")
#endif