mirror of
https://github.com/vishalxl/nostr_console.git
synced 2025-06-09 14:39:41 +02:00
removed debug prints
This commit is contained in:
parent
9252a59e4a
commit
2362b26599
@ -1351,9 +1351,7 @@ Future<void> socialMenuUi(Store node) async {
|
|||||||
}
|
}
|
||||||
stdout.write("Type comment to post/reply (type '+' to send a like): ");
|
stdout.write("Type comment to post/reply (type '+' to send a like): ");
|
||||||
String? $contentVar = stdin.readLineSync();
|
String? $contentVar = stdin.readLineSync();
|
||||||
print('|got string|-');
|
|
||||||
String content = $contentVar??"";
|
String content = $contentVar??"";
|
||||||
print("|content| = " + content );
|
|
||||||
if( content == "") {
|
if( content == "") {
|
||||||
clearScreen();
|
clearScreen();
|
||||||
break;
|
break;
|
||||||
@ -1361,7 +1359,6 @@ Future<void> socialMenuUi(Store node) async {
|
|||||||
|
|
||||||
stdout.write("\nType id of event to reply to (leave blank to make a new post; type x to cancel): ");
|
stdout.write("\nType id of event to reply to (leave blank to make a new post; type x to cancel): ");
|
||||||
String? $replyToVar = stdin.readLineSync();
|
String? $replyToVar = stdin.readLineSync();
|
||||||
print("after readlinesync");
|
|
||||||
String replyToId = $replyToVar??"";
|
String replyToId = $replyToVar??"";
|
||||||
print("got id");
|
print("got id");
|
||||||
if( replyToId == "x") {
|
if( replyToId == "x") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user