We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a113c2 commit 904db8aCopy full SHA for 904db8a
src/lib/tw-project-meta-fetcher-hoc.jsx
@@ -103,8 +103,13 @@ const TWProjectMetaFetcherHOC = function (WrappedComponent) {
103
this.props.onSetDescription(instructions, credits);
104
}
105
if (
106
- String(rawData.remix) !== '0' // checks isRemix and remixId existing at the same time
+ typeof rawData.accepted === 'boolean'
107
+ || typeof rawData.removedsoft === 'boolean'
108
+ || String(rawData.remix) !== '0' // checks isRemix and remixId existing at the same time
109
+ || typeof rawData.tooLarge === 'boolean'
110
+ || authorName
111
) {
112
+ console.log(rawData.remix);
113
this.props.onSetExtraProjectInfo(
114
rawData.public && !rawData.softRejected,
115
String(rawData.remix) !== '0',
0 commit comments