mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-05 18:48:31 +00:00
4.0.0-rc13.10
* Fixed: Additional channel metadata not being displayed under live channels.
This commit is contained in:
parent
83d43a6bcf
commit
cb2f2b19ee
4 changed files with 4 additions and 3 deletions
|
@ -100,7 +100,7 @@ class FrankerFaceZ extends Module {
|
||||||
FrankerFaceZ.Logger = Logger;
|
FrankerFaceZ.Logger = Logger;
|
||||||
|
|
||||||
const VER = FrankerFaceZ.version_info = {
|
const VER = FrankerFaceZ.version_info = {
|
||||||
major: 4, minor: 0, revision: 0, extra: '-rc13.9',
|
major: 4, minor: 0, revision: 0, extra: '-rc13.10',
|
||||||
commit: __git_commit__,
|
commit: __git_commit__,
|
||||||
build: __webpack_hash__,
|
build: __webpack_hash__,
|
||||||
toString: () =>
|
toString: () =>
|
||||||
|
|
|
@ -83,7 +83,7 @@ export default class Twilight extends BaseSite {
|
||||||
href: MAIN_URL,
|
href: MAIN_URL,
|
||||||
rel: 'stylesheet',
|
rel: 'stylesheet',
|
||||||
type: 'text/css',
|
type: 'text/css',
|
||||||
crossOrigin: 'anonymouse'
|
crossOrigin: 'anonymous'
|
||||||
}));
|
}));
|
||||||
|
|
||||||
// Check for ?ffz-settings in page and open the
|
// Check for ?ffz-settings in page and open the
|
||||||
|
|
|
@ -99,7 +99,7 @@ export default class LegacyChannelBar extends Module {
|
||||||
|
|
||||||
updateMetadata(inst, keys) {
|
updateMetadata(inst, keys) {
|
||||||
const container = this.fine.getChildNode(inst),
|
const container = this.fine.getChildNode(inst),
|
||||||
metabar = container && container.querySelector && container.querySelector('.channel-info-bar__action-container > .tw-flex');
|
metabar = container && container.querySelector && container.querySelector('.channel-info-bar__action-container > .tw-flex,.channel-info-bar__content-right > .tw-align-items-start > .tw-flex:last-child');
|
||||||
|
|
||||||
if ( ! inst._ffz_mounted || ! metabar )
|
if ( ! inst._ffz_mounted || ! metabar )
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
.channel-info-bar__content-right > .tw-align-items-start > .tw-flex:last-child,
|
||||||
.channel-info-bar__action-container > .tw-flex {
|
.channel-info-bar__action-container > .tw-flex {
|
||||||
.channel-info-bar__viewers-wrapper > div:first-child {
|
.channel-info-bar__viewers-wrapper > div:first-child {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue