Skip to content

Commit

Permalink
Fix inspector URL for v3 releases
Browse files Browse the repository at this point in the history
Fixes: #72
  • Loading branch information
Martin Clauss committed May 6, 2024
1 parent e4063f0 commit 6e04d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/isar/lib/src/isar_connect.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ abstract class _IsarConnect {
path = path.substring(0, path.length - 1);
}
final url =
' https://isar-community.dev/inspector/${Isar.version}/#/$port$path ';
' https://inspect.isar-community.dev/${Isar.version}/#/$port$path ';
String line(String text, String fill) {
final fillCount = url.length - text.length;
final left = List.filled(fillCount ~/ 2, fill);
Expand Down

0 comments on commit 6e04d7e

Please sign in to comment.