socialnetworknews-web

A open-source Paper.li clone
git clone git://archive.git.mtrnord.blog/SocialNetworkNews/socialnetworknews-web.git
Log | Files | Refs | README | LICENSE

commit 4252e3aaef101c9e25209fb756b0f5f28d49c543
parent 25271ce32666bf80be545b55c6c0e717ae4334c3
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue, 27 Mar 2018 17:42:49 +0200

Disable Author meta until the Author API is implemented

Diffstat:
Msrc/app/tweet-list/tweet-list.component.ts | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/app/tweet-list/tweet-list.component.ts b/src/app/tweet-list/tweet-list.component.ts @@ -70,7 +70,8 @@ export class TweetListComponent implements OnInit { { name: 'og:description', content: this.paperData.description }, { name: 'og:image', content: this.paperData.paper_image }, { name: 'description', content: this.paperData.description }, - { name: 'author', content: this.paperData.author.username }, + // TODO Disabled until Author API Implemented + // { name: 'author', content: this.paperData.author.username }, ]); this.titleService.setTitle( this.paperData.name ); },