Skip to content
This repository was archived by the owner on Jun 2, 2023. It is now read-only.

Commit d9d6d4e

Browse files
committed
Update Catcher.cs
1 parent e05c6c6 commit d9d6d4e

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

src/Duolingo_CR/Catcher.cs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -104,61 +104,61 @@ private void SignIn_Click(object sender, SEA e)
104104
/// <summary>
105105
///
106106
/// </summary>
107-
SWFMB.Show(DuoAPI.LoginData.UserId + " - " + DuoAPI.LoginData.Username);
107+
SWFMB.Show(DuoAPI.LoginData.UserId + " - " + DuoAPI.LoginData.Username, "Result");
108108

109109
/// <summary>
110110
///
111111
/// </summary>
112-
SWFMB.Show(DuoAPI.UserDataRaw().InviteUrl);
112+
SWFMB.Show(DuoAPI.UserDataRaw().InviteUrl, "Result");
113113

114114
/// <summary>
115115
///
116116
/// </summary>
117-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.UserInfo(), Newtonsoft.Json.Formatting.Indented));
117+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.UserInfo(), Newtonsoft.Json.Formatting.Indented), "Result");
118118

119119
/// <summary>
120120
///
121121
/// </summary>
122-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Streak(), Newtonsoft.Json.Formatting.Indented));
122+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Streak(), Newtonsoft.Json.Formatting.Indented), "Result");
123123

124124
/// <summary>
125125
///
126126
/// </summary>
127-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Calendar(), Newtonsoft.Json.Formatting.Indented));
127+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Calendar(), Newtonsoft.Json.Formatting.Indented), "Result");
128128

129129
/// <summary>
130130
///
131131
/// </summary>
132-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Friends(), Newtonsoft.Json.Formatting.Indented));
132+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.Friends(), Newtonsoft.Json.Formatting.Indented), "Result");
133133

134134
/// <summary>
135135
///
136136
/// </summary>
137-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.LearningLanguages(), Newtonsoft.Json.Formatting.Indented));
137+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.LearningLanguages(), Newtonsoft.Json.Formatting.Indented), "Result");
138138

139139
/// <summary>
140140
///
141141
/// </summary>
142-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.KnownWords(), Newtonsoft.Json.Formatting.None));
142+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.KnownWords(), Newtonsoft.Json.Formatting.None), "Result");
143143

144144
/// <summary>
145145
///
146146
/// </summary>
147-
SWFMB.Show(NJJS.SerializeObject(DuoAPI.LearnedSkills(), Newtonsoft.Json.Formatting.None));
147+
SWFMB.Show(NJJS.SerializeObject(DuoAPI.LearnedSkills(), Newtonsoft.Json.Formatting.None), "Result");
148148

149149
/// <summary>
150150
///
151151
/// </summary>
152-
//SWFMB.Show(NJJS.SerializeObject(DuoAPI.VocabularyAsync(), Newtonsoft.Json.Formatting.Indented));
152+
//SWFMB.Show(NJJS.SerializeObject(DuoAPI.VocabularyAsync(), Newtonsoft.Json.Formatting.Indented), "Result");
153153

154154
/// <summary>
155155
///
156156
/// </summary>
157-
//SWFMB.Show(NJJS.SerializeObject(DuoAPI.LexemeDataAsync("55", "en"), Newtonsoft.Json.Formatting.Indented));
157+
//SWFMB.Show(NJJS.SerializeObject(DuoAPI.LexemeDataAsync("55", "en"), Newtonsoft.Json.Formatting.Indented), "Result");
158158
}
159159
catch (SE Exception)
160160
{
161-
SWFMB.Show(Exception.Message);
161+
SWFMB.Show(Exception.Message, "Alert");
162162
//SWFMB.Show(Exception.StackTrace);
163163
}
164164
}

0 commit comments

Comments
 (0)