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 08989a0 commit ebc5b8fCopy full SHA for ebc5b8f
electron_app/src/StableDiffusion.vue
@@ -28,7 +28,6 @@ export default {
28
return {
29
is_backend_loaded : false,
30
is_input_avail : false,
31
- nsfw_filter: true,
32
model_loading_msg : "",
33
model_loading_title : "",
34
loading_percentage : -1 ,
@@ -60,7 +59,7 @@ export default {
60
59
61
// check for nsfw content
62
img.onload = () => {
63
- if (this.nsfw_filter == false) {
+ if (this.$parent.app_state.app_data.settings.nsfw_filter == false) {
64
if (img.attached_cbs) {
65
if (img.attached_cbs.on_img)
66
img.attached_cbs.on_img(impath);
0 commit comments