Skip to content

Commit 8de34dd

Browse files
ViniGupta08facebook-github-bot
authored andcommitted
Redirect eden tray users to butterfly form to report issues on EdenFS WP group
Summary: Following this post - https://fb.workplace.com/groups/edenfswindows/posts/1743679053214632/?comment_id=1743696646546206&reply_comment_id=1760010514914819 When users are reporting eden issues via Eden Tray -> Report Issues we would like to redirect them to the Source Control Support Form to ensure that the issue is posted in the appropriate EdenFS Workplace group, thereby allowing our SRE team to gain better traction and respond to user issues faster. https://www.internalfb.com/support/sourcecontrol. Reviewed By: kavehahmadi60 Differential Revision: D75180460 fbshipit-source-id: c4fa215c2dc733deb76753b304d539b4f4be3050
1 parent e094382 commit 8de34dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eden/fs/notifications/WindowsNotifier.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ void showWinNotification(HWND hwnd, const WindowsNotification& notif) {
297297

298298
void executeShellCommand(
299299
std::string_view cmd,
300-
std::string_view params,
300+
std::string_view params = "",
301301
std::string_view cwd = "") {
302302
SHELLEXECUTEINFOW pExecInfo = {};
303303
pExecInfo.cbSize = sizeof(pExecInfo);
@@ -399,7 +399,7 @@ WndProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) noexcept {
399399

400400
case IDM_REPORT_BUG: {
401401
executeShellCommand(
402-
"edenfsctl", "--press-to-continue rage --report");
402+
"https://www.internalfb.com/support/sourcecontrol");
403403
return 0;
404404
}
405405

0 commit comments

Comments
 (0)