Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion objectbox/lib/src/native/admin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class Admin implements Finalizable {
static bool isAvailable() => C.has_feature(OBXFeature.Admin);

/// Creates an ObjectBox Admin associated with the given store and options.
Admin(Store store, {String bindUri = 'http://127.0.0.1:8090'}) {
Admin(Store store, {String bindUri = 'http://0.0.0.0:8090'}) {
if (!isAvailable()) {
throw UnsupportedError(
'Admin is not available in the loaded ObjectBox runtime library.');
Expand Down