diff --git a/comfy/text_encoders/flux.py b/comfy/text_encoders/flux.py index 849214ce080..0590741bbac 100644 --- a/comfy/text_encoders/flux.py +++ b/comfy/text_encoders/flux.py @@ -28,7 +28,7 @@ def tokenize_with_weights(self, text:str, return_word_ids=False): return out def untokenize(self, token_weight_pair): - return self.clip_g.untokenize(token_weight_pair) + return self.clip_l.untokenize(token_weight_pair) def state_dict(self): return {}