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 25f04a4 commit 9658c14Copy full SHA for 9658c14
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "igdm",
3
- "version": "1.3.4",
+ "version": "1.3.5",
4
"description": "Send and receive Instagram direct message through CLI.",
5
"keywords": [
6
"instagram",
@@ -68,4 +68,4 @@
68
"instagram-private-api": "^1.43.3",
69
"rxjs": "^6.6.3"
70
}
71
-}
+}
src/domain/direct-messaging.ts
@@ -90,7 +90,7 @@ export default class DirectMessaging {
90
},
91
]);
92
93
- switch (input) {
+ switch ((input as string).toLowerCase()) {
94
case '\\l': return this.init();
95
case '\\r':
96
this.threads = await this.getInbox();
0 commit comments