Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
fix: discovery response typo
Browse files Browse the repository at this point in the history
  • Loading branch information
iamalper committed Aug 15, 2023
1 parent 7441ec1 commit fa2c189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/classes/discover.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Discover {
await client.get(Uri.http("${activeHost.address}:$port"));
if (response.statusCode == 200) {
final json = jsonDecode(response.body);
if (json["mesaj"] == Constants.meeting) {
if (json["message"] == Constants.meeting) {
ips.add(Device(
adress: activeHost.address,
code: json["code"] as int,
Expand Down

0 comments on commit fa2c189

Please sign in to comment.