Merge pull request #2016 from imjayanthka/master

issue 2015
This commit is contained in:
Sean Yesmunt 2018-10-05 18:42:52 -04:00 committed by GitHub
commit 25d4d09c10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View file

@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
### Changed
* Make tooltip smarter ([#1979](https://github.com/lbryio/lbry-desktop/pull/1979))
* Change channel pages to have 48 items instead of 10 ([#2002](https://github.com/lbryio/lbry-desktop/pull/2002))
* Update to https ([#2016](https://github.com/lbryio/lbry-desktop/pull/2016))
### Fixed
* Invite table cutoff with large number of invites ([#1985](https://github.com/lbryio/lbry-desktop/pull/1985))

View file

@ -89,7 +89,7 @@ class SelectThumbnail extends React.PureComponent<Props, State> {
type="text"
name="content_thumbnail"
label="URL"
placeholder="http://spee.ch/mylogo"
placeholder="https://spee.ch/mylogo"
value={thumbnail}
disabled={formDisabled}
onChange={this.handleThumbnailChange}

View file

@ -31,8 +31,8 @@ class SocialShare extends React.PureComponent<Props> {
const { speechShareable, onDone } = this.props;
const channelClaimId =
value && value.publisherSignature && value.publisherSignature.certificateId;
const speechPrefix = 'http://spee.ch/';
const lbryPrefix = 'http://open.lbry.io/';
const speechPrefix = 'https://spee.ch/';
const lbryPrefix = 'https://open.lbry.io/';
const speechURL =
channelName && channelClaimId

View file

@ -19,7 +19,7 @@ export default (props: Props) => {
icon={icons.GLOBE}
button="alt"
label={__('Share')}
href={`http://spee.ch/${speechURL}`}
href={`https://spee.ch/${speechURL}`}
/>
) : null;
};