MIRROR: javascript for ๐Ÿœ's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

properly flush

+4 -1
+1 -1
meson.build
··· 67 67 build_date = run_command('date', '+%Y-%m-%d', check: true).stdout().strip() 68 68 69 69 version_conf = configuration_data() 70 - version_conf.set('ANT_VERSION', '0.0.6.31') 70 + version_conf.set('ANT_VERSION', '0.0.6.32') 71 71 version_conf.set('ANT_GIT_HASH', git_hash) 72 72 version_conf.set('ANT_BUILD_DATE', build_date) 73 73
+3
src/modules/fs.c
··· 215 215 req->error_msg = strdup(uv_strerror(uv_req->result)); 216 216 } 217 217 218 + uv_fs_req_cleanup(uv_req); 218 219 req->completed = 1; 219 220 complete_request(req); 220 221 } ··· 227 228 req->error_msg = strdup(uv_strerror(uv_req->result)); 228 229 } 229 230 231 + uv_fs_req_cleanup(uv_req); 230 232 req->completed = 1; 231 233 complete_request(req); 232 234 } ··· 239 241 req->error_msg = strdup(uv_strerror(uv_req->result)); 240 242 } 241 243 244 + uv_fs_req_cleanup(uv_req); 242 245 req->completed = 1; 243 246 complete_request(req); 244 247 }