aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-05-24 14:24:00 +0200
committerChocobozzz <me@florianbigard.com>2019-05-24 14:25:12 +0200
commit625a98bc4ad76cde1b7192ed10ff38e7aea3183f (patch)
tree1d83a453b2017c0773ab14fc7653a80a4cb69b8d
parent089caedc6f45453a969deca1f9b3a105b2294389 (diff)
downloadPeerTube-625a98bc4ad76cde1b7192ed10ff38e7aea3183f.tar.gz
PeerTube-625a98bc4ad76cde1b7192ed10ff38e7aea3183f.tar.zst
PeerTube-625a98bc4ad76cde1b7192ed10ff38e7aea3183f.zip
Fix method names
-rw-r--r--client/src/app/shared/video-playlist/video-add-to-playlist.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts b/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
index e7f7dfe8a..c6cff03a4 100644
--- a/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
+++ b/client/src/app/shared/video-playlist/video-add-to-playlist.component.ts
@@ -65,7 +65,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit,
65 } 65 }
66 } 66 }
67 67
68 reload () { 68 init () {
69 this.resetOptions(true) 69 this.resetOptions(true)
70 70
71 if (this.lazyLoad !== true) this.load() 71 if (this.lazyLoad !== true) this.load()
@@ -74,7 +74,7 @@ export class VideoAddToPlaylistComponent extends FormReactive implements OnInit,
74 reload () { 74 reload () {
75 this.videoPlaylists = [] 75 this.videoPlaylists = []
76 76
77 this.reload() 77 this.init()
78 78
79 this.cd.markForCheck() 79 this.cd.markForCheck()
80 } 80 }