fixed issue where message to encrypted group wasn't going

This commit is contained in:
Vishal 2022-12-05 22:13:09 +05:30
parent cf8c6a9ff1
commit cce709eef1
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import 'package:logging/logging.dart';
// name of executable
const String exename = "nostr_console";
const String version = "0.2.5-beta";
const String version = "0.2.6-beta";
int gDebug = 0;
int gSpecificDebug = 0;

View File

@ -2093,7 +2093,7 @@ class Store {
clientName = (clientName == "")? "nostr_console": clientName; // in case its empty
String strTags = "";
if( channel.roomType == enumRoomType.kind40) {
if( channel.roomType == enumRoomType.kind40 || channel.roomType == enumRoomType.kind140) {
strTags += '["e","$channelId"]';
} else if( channel.roomType == enumRoomType.RoomLocationTag) {
String channelId = channel.getChannelId();

View File

@ -1,6 +1,6 @@
name: nostr_console
description: A multi-platform nostr client built for terminal/console
version: 0.2.5-beta
version: 0.2.6-beta
homepage: https://github.com/vishalxl/nostr_console