commit
25d4d09c10
4 changed files with 5 additions and 4 deletions
|
@ -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))
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue