Skip to content

Commit

Permalink
Remove VideoController API version (it is not needed)
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Ruget <fred@atlant.is>
  • Loading branch information
douzebis authored and CarlSchwan committed Sep 1, 2022
1 parent e1ddead commit 891d11e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
'ocs' => [
[
'name' => 'video#getTracks',
'url' => '/video/v1.0/tracks',
'url' => '/video/tracks',
'verb' => 'GET',
]
]
Expand Down
2 changes: 1 addition & 1 deletion src/components/Videos.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default {
async fetchTracks() {
try {
const response = await axios.get(
generateOcsUrl('/apps/viewer/video/v1.0/tracks'),
generateOcsUrl('/apps/viewer/video/tracks'),
{ params: { videoPath: this.filename } }
)
const davDir = dirname(this.davPath)
Expand Down

0 comments on commit 891d11e

Please sign in to comment.