Skip to content

Commit 18b1de3

Browse files
committed
Classify featherx correctly as using put saver
This should fix a bug where there is no save button for featherx sites. Not sure how this worked before, but I think maybe I was a bit lazy about how the "tw_kind" was implemented/handled for featherx in the past.
1 parent b2c3b18 commit 18b1de3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rails/app/models/site.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def core_js_content
114114

115115
def use_put_saver?
116116
# These always use put saver
117-
return true if is_feather? || is_sitelet?
117+
return true if is_feather? || is_featherx? || is_sitelet?
118118

119119
# Classic always uses upload saver
120120
return false if is_classic?

0 commit comments

Comments
 (0)