aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/recommendations/recommendations.service.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-28 14:51:30 +0200
committerChocobozzz <me@florianbigard.com>2018-09-28 14:51:30 +0200
commit01fe5bd721ae99569f776ad362ebdaa5ba8f494f (patch)
tree1acfe24beb2531987660578524be324b2885525f /client/src/app/videos/recommendations/recommendations.service.ts
parent19f22055162185d5f46d5916c82de3639de209a1 (diff)
downloadPeerTube-01fe5bd721ae99569f776ad362ebdaa5ba8f494f.tar.gz
PeerTube-01fe5bd721ae99569f776ad362ebdaa5ba8f494f.tar.zst
PeerTube-01fe5bd721ae99569f776ad362ebdaa5ba8f494f.zip
Fix no other videos displayed on some videos
Diffstat (limited to 'client/src/app/videos/recommendations/recommendations.service.ts')
-rw-r--r--client/src/app/videos/recommendations/recommendations.service.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/client/src/app/videos/recommendations/recommendations.service.ts b/client/src/app/videos/recommendations/recommendations.service.ts
index 114a808b5..a547e289d 100644
--- a/client/src/app/videos/recommendations/recommendations.service.ts
+++ b/client/src/app/videos/recommendations/recommendations.service.ts
@@ -2,8 +2,6 @@ import { Video } from '@app/shared/video/video.model'
2import { RecommendationInfo } from '@app/shared/video/recommendation-info.model' 2import { RecommendationInfo } from '@app/shared/video/recommendation-info.model'
3import { Observable } from 'rxjs' 3import { Observable } from 'rxjs'
4 4
5export type UUID = string
6
7export interface RecommendationService { 5export interface RecommendationService {
8 getRecommendations (recommendation: RecommendationInfo): Observable<Video[]> 6 getRecommendations (recommendation: RecommendationInfo): Observable<Video[]>
9} 7}