Skip to content

Commit

Permalink
Official Release Sup v0.1.1-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
embiimob committed Feb 3, 2023
1 parent c2747e9 commit 5a405f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ObjectBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ private void btnGetOwned_Click(object sender, EventArgs e)


string profileCheck = txtSearchAddress.Text;
PROState searchprofile = PROState.GetProfileByAddress(txtSearchAddress.Text, txtLogin.Text, txtPassword.Text, txtUrl.Text);
PROState searchprofile = PROState.GetProfileByAddress(txtSearchAddress.Text.Replace("@", ""), txtLogin.Text, txtPassword.Text, txtUrl.Text);

if (searchprofile.URN != null)
{
Expand All @@ -238,7 +238,7 @@ private void btnGetOwned_Click(object sender, EventArgs e)
{


searchprofile = PROState.GetProfileByURN(txtSearchAddress.Text, txtLogin.Text, txtPassword.Text, txtUrl.Text);
searchprofile = PROState.GetProfileByURN(txtSearchAddress.Text.Replace("@", ""), txtLogin.Text, txtPassword.Text, txtUrl.Text);

if (searchprofile.URN != null)
{
Expand Down Expand Up @@ -364,7 +364,7 @@ private async void btnGetCreated_Click(object sender, EventArgs e)


string profileCheck = txtSearchAddress.Text;
PROState searchprofile = PROState.GetProfileByAddress(txtSearchAddress.Text, txtLogin.Text, txtPassword.Text, txtUrl.Text);
PROState searchprofile = PROState.GetProfileByAddress(txtSearchAddress.Text.Replace("@", ""), txtLogin.Text, txtPassword.Text, txtUrl.Text);

if (searchprofile.URN != null)
{
Expand All @@ -375,7 +375,7 @@ private async void btnGetCreated_Click(object sender, EventArgs e)
{


searchprofile = PROState.GetProfileByURN(txtSearchAddress.Text, txtLogin.Text, txtPassword.Text, txtUrl.Text);
searchprofile = PROState.GetProfileByURN(txtSearchAddress.Text.Replace("@", ""), txtLogin.Text, txtPassword.Text, txtUrl.Text);

if (searchprofile.URN != null)
{
Expand Down

0 comments on commit 5a405f1

Please sign in to comment.