Skip to content

Commit

Permalink
💾 Feat(WebService): Use FO to represent fake one.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dynesshely committed Mar 31, 2023
1 parent e29e09d commit 06432ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kitx_mobile/lib/services/web_service.dart
Expand Up @@ -84,7 +84,7 @@ class WebService {
var bytes = utf8.encode(deviceId);
var hexString = bytes.sublist(0, 5).map((b) => b.toRadixString(16).padLeft(2, '0')).join(':');

return 'FF:${hexString.toUpperCase()}';
return 'FO:${hexString.toUpperCase()}';
}

/// Get Network Information
Expand Down

0 comments on commit 06432ea

Please sign in to comment.