sfc-utils 1.3.38 → 1.3.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/settings.js +4 -0
package/package.json
CHANGED
package/settings.js
CHANGED
|
@@ -52,6 +52,10 @@ let getSettings = function(){
|
|
|
52
52
|
// Evan: This hack has my approval
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
+
// Empty array is triggering truthy test, so let's nullify
|
|
56
|
+
if (fullAuthors.length === 0){
|
|
57
|
+
fullAuthors = null
|
|
58
|
+
}
|
|
55
59
|
// Populate with sheet settings
|
|
56
60
|
settings = {
|
|
57
61
|
"PAYWALL_SETTING": storySettings.Paywall,
|