Skip to content

Commit beabb94

Browse files
committed
chore: update default url.
1 parent 0b19c50 commit beabb94

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/lib/pages/publish_sample.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class _WhipPublishSampleState extends State<WhipPublishSample> {
3636
_preferences = await SharedPreferences.getInstance();
3737
this.setState(() {
3838
_serverController.text = _preferences.getString('pushserver') ??
39-
'http://localhost:8080/whip/live/stream1';
39+
'http://127.0.0.1:8080/whip/live/stream1/publish';
4040
});
4141
}
4242

example/lib/pages/subscribe_sample.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class _WhipSubscribeSampleState extends State<WhipSubscribeSample> {
3434
_preferences = await SharedPreferences.getInstance();
3535
this.setState(() {
3636
_serverController.text = _preferences.getString('pullserver') ??
37-
'http://localhost:8080/whip/live/stream1';
37+
'http://127.0.0.1:8080/whip/live/stream1/subscribe';
3838
});
3939
}
4040

0 commit comments

Comments
 (0)