Skip to content

Commit

Permalink
Server: Fix route priorities.
Browse files Browse the repository at this point in the history
  • Loading branch information
e3ndr committed Oct 3, 2023
1 parent 8ea0053 commit d6eea05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ static class AthenaSoraAdapter extends SoraPlugin {

@Override
public void onInit(Sora sora) {
sora.addProvider(this, new MetaRoutes());
sora.addProvider(this, new MediaRoutes());
sora.addProvider(this, new MediaStreamRoutes());
sora.addProvider(this, new SessionRoutes());
sora.addProvider(this, new IngestApiRoutes());
sora.addProvider(this, new MetaRoutes());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ static class AthenaSoraAdapter extends SoraPlugin {

@Override
public void onInit(Sora sora) {
sora.addProvider(this, new MetaRoutes());
sora.addProvider(this, new UIRoutes());
sora.addProvider(this, new InternalRoutes());
sora.addProvider(this, new MetaRoutes());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ static class AthenaSoraAdapter extends SoraPlugin {

@Override
public void onInit(Sora sora) {
sora.addProvider(this, new MetaRoutes());
sora.addProvider(this, new WiiMCRoutes());
sora.addProvider(this, new InternalRoutes());
sora.addProvider(this, new MetaRoutes());
}

@Override
Expand Down

0 comments on commit d6eea05

Please sign in to comment.